2010-07-08 [colin] 3.7.6cvs13
authorColin Leroy <colin@colino.net>
Thu, 8 Jul 2010 20:49:40 +0000 (20:49 +0000)
committerColin Leroy <colin@colino.net>
Thu, 8 Jul 2010 20:49:40 +0000 (20:49 +0000)
* src/gtk/filesel.c
Fix bug 2223, 'Compilation fails with GTK+
2.21.3'. Thanks to Jan Psota !

ChangeLog
PATCHSETS
configure.ac
src/gtk/filesel.c

index 35361f685e12d445d0babbf76f5f914cf32652a2..b3e90ddd4811337638afec3cef9cf9642e2a27c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-07-08 [colin]     3.7.6cvs13
+
+       * src/gtk/filesel.c
+               Fix bug 2223, 'Compilation fails with GTK+
+               2.21.3'. Thanks to Jan Psota !
+
 2010-06-29 [pawel]     3.7.6cvs12
 
        * src/compose.c
@@ -12,8 +18,8 @@
 2010-06-21 [iwkse]     3.7.6cvs10
 
        * src/gtk/quicksearch.c
-                       Do not add into quicksearch history
-                       matching rules with bad syntax
+               Do not add into quicksearch history
+               matching rules with bad syntax
 
 2010-05-26 [holger]    3.7.6cvs9
 
 2010-05-22 [mir]       3.7.6cvs8
 
        * src/ldapctrl.c
-          Fix bug 2208. Encode encrypted password to qouted
-          printable to avoid making invalid XML. Encoding
-          will be activated the first time the password is
-          changed.
+               Fix bug 2208. Encode encrypted password to qouted
+               printable to avoid making invalid XML. Encoding
+               will be activated the first time the password is
+               changed.
 
 2010-05-22 [paul]      3.7.6cvs7
 
index 9c44e21be8ffa1a0f81ac0cb7d248c111252db2b..26b572be9b2c77a5a5761419813b031a6388d4c0 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.1.2.92 -r 1.1.2.93 src/gtk/quicksearch.c;  ) > 3.7.6cvs10.patchset
 ( cvs diff -u -r 1.2.2.28 -r 1.2.2.29 src/gtk/colorlabel.c;  ) > 3.7.6cvs11.patchset
 ( cvs diff -u -r 1.382.2.552 -r 1.382.2.553 src/compose.c;  ) > 3.7.6cvs12.patchset
+( cvs diff -u -r 1.2.2.40 -r 1.2.2.41 src/gtk/filesel.c;  ) > 3.7.6cvs13.patchset
index 7613946b37070befdb11b0f1fd23313a796b127a..415a101f21f9a4b07be7e38470c8ab3d8a56eeb0 100644 (file)
@@ -12,7 +12,7 @@ MINOR_VERSION=7
 MICRO_VERSION=6
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=12
+EXTRA_VERSION=13
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 79f37f7c85f3bf53f9e2bbb69e093bb6c49acd23..fb28de18ca64ad380733808c22f68f3e8db97778 100644 (file)
@@ -68,7 +68,7 @@ update_preview_cb (GtkFileChooser *file_chooser, gpointer data)
        if (pixbuf) {
                have_preview = TRUE;
                gtk_image_set_from_pixbuf (GTK_IMAGE (preview), pixbuf);
-               gdk_pixbuf_unref (pixbuf);
+               g_object_unref(G_OBJECT(pixbuf));
        }
 
        gtk_file_chooser_set_preview_widget_active (file_chooser, have_preview);