use type of guint32 instead of gumake for XNFilterEvents event

* modules/input/gtkimcontextxim.c (get_ic_real): use type of guint32
	instead of gumake for XNFilterEvents event mask(#110493).
This commit is contained in:
Hidetoshi Tajima 2003-05-14 16:05:53 +00:00
parent c3afabd5be
commit cf74247186
6 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed May 14 09:05:11 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
* modules/input/gtkimcontextxim.c (get_ic_real): use type of guint32
instead of gumake for XNFilterEvents event mask(#110493).
2003-05-11 Anders Carlsson <andersca@codefactory.se>
* gtk/gtkdnd.c (gtk_drag_source_unset_icon): Don't cast a gchar to

View File

@ -1,3 +1,8 @@
Wed May 14 09:05:11 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
* modules/input/gtkimcontextxim.c (get_ic_real): use type of guint32
instead of gumake for XNFilterEvents event mask(#110493).
2003-05-11 Anders Carlsson <andersca@codefactory.se>
* gtk/gtkdnd.c (gtk_drag_source_unset_icon): Don't cast a gchar to

View File

@ -1,3 +1,8 @@
Wed May 14 09:05:11 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
* modules/input/gtkimcontextxim.c (get_ic_real): use type of guint32
instead of gumake for XNFilterEvents event mask(#110493).
2003-05-11 Anders Carlsson <andersca@codefactory.se>
* gtk/gtkdnd.c (gtk_drag_source_unset_icon): Don't cast a gchar to

View File

@ -1,3 +1,8 @@
Wed May 14 09:05:11 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
* modules/input/gtkimcontextxim.c (get_ic_real): use type of guint32
instead of gumake for XNFilterEvents event mask(#110493).
2003-05-11 Anders Carlsson <andersca@codefactory.se>
* gtk/gtkdnd.c (gtk_drag_source_unset_icon): Don't cast a gchar to

View File

@ -1,3 +1,8 @@
Wed May 14 09:05:11 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com>
* modules/input/gtkimcontextxim.c (get_ic_real): use type of guint32
instead of gumake for XNFilterEvents event mask(#110493).
2003-05-11 Anders Carlsson <andersca@codefactory.se>
* gtk/gtkdnd.c (gtk_drag_source_unset_icon): Don't cast a gchar to

View File

@ -1132,7 +1132,7 @@ get_ic_real (GtkIMContextXIM *context_xim)
* stroke if both key pressed and released events are filtered.
* (bugzilla #81759)
*/
gulong mask = 0;
guint32 mask = 0;
XGetICValues (xic,
XNFilterEvents, &mask,
NULL);