diff --git a/ChangeLog b/ChangeLog index 9212ca0eae..485a739aa6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-07-04 Michael Natterer + + * gtk/gtkentry.c (_gtk_entry_reset_im_context): set need_im_reset + to FALSE instead of 0. + 2008-07-04 Michael Natterer Allocate with GSlice: diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 59b1ca4c16..2407062254 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -3788,7 +3788,7 @@ _gtk_entry_reset_im_context (GtkEntry *entry) { if (entry->need_im_reset) { - entry->need_im_reset = 0; + entry->need_im_reset = FALSE; gtk_im_context_reset (entry->im_context); } }