diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-03-20 21:47:01 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-03-20 21:47:01 +0000 |
commit | 8acfd1e9de927adf2bea546bda55740a2b0cc436 (patch) | |
tree | 37b5917fa9f5f02d3132d06eb1f1bf7ddab2f5e0 /gtk/gtkentry.c | |
parent | 67359a9c01adb1418621678975b496964e8e6843 (diff) | |
download | gdk-pixbuf-8acfd1e9de927adf2bea546bda55740a2b0cc436.tar.gz |
Patch from Erwann Chenede, #73900 fixing a lot of warnings with Forte CC,
Wed Mar 20 16:36:08 2002 Owen Taylor <otaylor@redhat.com>
* gtk/*.c: Patch from Erwann Chenede, #73900 fixing
a lot of warnings with Forte CC, mostly implicit
casts between void * and function pointers.
* gdk/gdkevents.c (gdk_event_get_state): GdkEventVisibility's
state field is not a GdkModifierType. (Also #73900)
Diffstat (limited to 'gtk/gtkentry.c')
-rw-r--r-- | gtk/gtkentry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index c9d6d18fc..9ef6c6e88 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -1585,7 +1585,7 @@ gtk_entry_focus_out (GtkWidget *widget, gtk_entry_check_cursor_blink (entry); g_signal_handlers_disconnect_by_func (gdk_keymap_get_default (), - gtk_entry_keymap_direction_changed, + (gpointer) gtk_entry_keymap_direction_changed, entry); return FALSE; |