Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--shell/ev-page-action.c5
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c91b6f6..3e9892a 100644
--- 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):
diff --git a/shell/ev-page-action.c b/shell/ev-page-action.c
index 057b501..4b559c5 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);