Code

a couple of trivial %d -> %u changes.
[inkscape.git] / src / extension / internal / gdkpixbuf-input.cpp
index 943300c9ef85a0fad0de6dfb8061b0dc724e4da6..14effbeb7a991aaf66c554bf6e910f32b38df394 100644 (file)
@@ -21,11 +21,12 @@ SPDocument *
 GdkpixbufInput::open(Inkscape::Extension::Input */*mod*/, char const *uri)
 {
     SPDocument *doc = sp_document_new(NULL, TRUE, TRUE);
-    bool saved = sp_document_get_undo_sensitive(doc);
-    sp_document_set_undo_sensitive(doc, false); // no need to undo in this temporary document
     GdkPixbuf *pb = Inkscape::IO::pixbuf_new_from_file( uri, NULL );
 
     if (pb) {         /* We are readable */
+        bool saved = sp_document_get_undo_sensitive(doc);
+        sp_document_set_undo_sensitive(doc, false); // no need to undo in this temporary document
+
         Inkscape::XML::Node *repr = NULL;
 
         double width = gdk_pixbuf_get_width(pb);
@@ -66,13 +67,12 @@ GdkpixbufInput::open(Inkscape::Extension::Input */*mod*/, char const *uri)
         gdk_pixbuf_unref(pb);
         //alter the canvas size to fit the image size
         fit_canvas_to_drawing(doc);
+        // restore undo, as now this document may be shown to the user if a bitmap was opened
+        sp_document_set_undo_sensitive(doc, saved);
     } else {
         printf("GdkPixbuf loader failed\n");
     }
 
-    // restore undo, as now this document may be shown to the user if a bitmap was opened
-    sp_document_set_undo_sensitive(doc, saved);
-
     return doc;
 }
 
@@ -110,7 +110,7 @@ GdkpixbufInput::init(void)
             }
 
             gchar *xmlString = g_strdup_printf(
-                "<inkscape-extension>\n"
+                "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
                     "<name>" N_("%s GDK pixbuf Input") "</name>\n"
                     "<id>org.inkscape.input.gdkpixbuf.%s</id>\n"
                     "<input>\n"