summaryrefslogtreecommitdiffstats
path: root/src/helper/pixbuf-ops.cpp
diff options
context:
space:
mode:
authorJohn Smith <john.smith7545@yahoo.com>2012-04-02 14:10:25 +0000
committerJohn Smith <removethis.john.q.public@bigmail.com>2012-04-02 14:10:25 +0000
commitaa45c83d224836b06d805b74912a2e98dfe32874 (patch)
treec7f7e1e8a3b2a97d27b70e43b4fa55bfdc92c6b3 /src/helper/pixbuf-ops.cpp
parentfix XML output of guideline color (diff)
downloadinkscape-aa45c83d224836b06d805b74912a2e98dfe32874.tar.gz
inkscape-aa45c83d224836b06d805b74912a2e98dfe32874.zip
Fix for 367607 : Remove deprecated GTK+ symbols - Deprecated *_unref symbols replaced with g_object_unref
(bzr r11139)
Diffstat (limited to 'src/helper/pixbuf-ops.cpp')
-rw-r--r--src/helper/pixbuf-ops.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/pixbuf-ops.cpp b/src/helper/pixbuf-ops.cpp
index f980953dc..cae297e89 100644
--- a/src/helper/pixbuf-ops.cpp
+++ b/src/helper/pixbuf-ops.cpp
@@ -77,7 +77,7 @@ bool sp_export_jpg_file(SPDocument *doc, gchar const *filename,
g_snprintf(c, 32, "%f", quality);
gboolean saved = gdk_pixbuf_save (pixbuf, filename, "jpeg", NULL, "quality", c, NULL);
g_free(c);
- gdk_pixbuf_unref (pixbuf);
+ g_object_unref (pixbuf);
return saved;
}