From: Jonathan Blandford Date: Sat, 9 Apr 2005 04:06:08 +0000 (+0000) Subject: Fix logic. X-Git-Tag: EVINCE_0_2_1~68 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=324e007ce9e3dfd5e1c28fdc90483ca81236b180;p=evince.git Fix logic. Sat Apr 9 00:05:36 2005 Jonathan Blandford * shell/ev-page-action.c: Fix logic. --- diff --git a/ChangeLog b/ChangeLog index c91b6f64..3e9892a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Apr 9 00:05:36 2005 Jonathan Blandford + + * shell/ev-page-action.c: Fix logic. + 2005-04-08 Marco Pesenti Gritti * shell/ev-view.c: (ev_view_can_find_next): diff --git a/shell/ev-page-action.c b/shell/ev-page-action.c index 057b501f..4b559c5d 100644 --- a/shell/ev-page-action.c +++ b/shell/ev-page-action.c @@ -371,8 +371,9 @@ connect_proxy (GtkAction *action, GtkWidget *proxy) G_CALLBACK (update_page_cache), proxy, 0); /* We only go through this whole rigmarole if we can set - * GtkEntryCompletion::popup-set-width */ - if (gtk_check_version (2, 7, 0) != NULL) { + * GtkEntryCompletion::popup-set-width, which appeared in + * GTK+-2.7.0 */ + if (gtk_check_version (2, 7, 0) == NULL) { g_signal_connect_object (action, "notify::model", G_CALLBACK (update_model), proxy, 0);