]> www.fi.muni.cz Git - evince.git/commitdiff
Fix logic.
authorJonathan Blandford <jrb@redhat.com>
Sat, 9 Apr 2005 04:06:08 +0000 (04:06 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Sat, 9 Apr 2005 04:06:08 +0000 (04:06 +0000)
Sat Apr  9 00:05:36 2005  Jonathan Blandford  <jrb@redhat.com>

        * shell/ev-page-action.c: Fix logic.

ChangeLog
shell/ev-page-action.c

index c91b6f6436a6dad32fafa5e2c8b6189525f116df..3e9892a1b0f3a08742345337e427ee200c26e1f8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Apr  9 00:05:36 2005  Jonathan Blandford  <jrb@redhat.com>
+
+       * shell/ev-page-action.c: Fix logic.
+
 2005-04-08  Marco Pesenti Gritti <mpg@redhat.com>
 
        * shell/ev-view.c: (ev_view_can_find_next):
index 057b501fefe3429b64b2d49bdd4a2299aebb6ec4..4b559c5d4bba96fa327437b6ce7bdbe8b629cd9f 100644 (file)
@@ -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);