aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-04-28 03:00:40 +0000
committerBill Meier <wmeier@newsguy.com>2009-04-28 03:00:40 +0000
commitac06ea0517f713f05e6a70d85134a60797996089 (patch)
treedd560ace418782d98a8494f5c04c5f9a7e1abc84 /gtk
parent9e3f624416e6e7d4bf134f38cf7bc62df3949fff (diff)
find_dlg: handler_id returned from g_signal_connect is gulong (not int)
svn path=/trunk/; revision=28189
Diffstat (limited to 'gtk')
-rw-r--r--gtk/find_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/find_dlg.c b/gtk/find_dlg.c
index d83ab1504b..bbdfc7a696 100644
--- a/gtk/find_dlg.c
+++ b/gtk/find_dlg.c
@@ -102,8 +102,8 @@ static GtkWidget *filter_text_box;
* Save the presskey handlers to be able to dissable the auto-completion
* feature for hex and string searches.
*/
-static int te_presskey_handler_id;
-static int win_presskey_handler_id;
+static gulong te_presskey_handler_id;
+static gulong win_presskey_handler_id;
void
find_frame_cb(GtkWidget *w _U_, gpointer d _U_)