Use NULL, not 0 to terminate NULL-terminated va lists. (#165683)

2005-01-31  Matthias Clasen  <mclasen@redhat.com>

	* modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate
	NULL-terminated va lists.  (#165683)
This commit is contained in:
Matthias Clasen 2005-01-31 19:56:01 +00:00 committed by Matthias Clasen
parent 136cbb50ac
commit 4594c980b0
4 changed files with 27 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-01-31 Matthias Clasen <mclasen@redhat.com>
* modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate
NULL-terminated va lists. (#165683)
2005-01-29 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw):
@ -18,6 +23,9 @@ Thu Jan 27 14:25:45 2005 Manish Singh <yosh@gimp.org>
2005-01-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render):
Make wrapping work in RTL mode.
* gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
obey HIG spacing a bit more, add a hand cursor when over the
link button. (#163979, Jorn Baayen)

View File

@ -1,3 +1,8 @@
2005-01-31 Matthias Clasen <mclasen@redhat.com>
* modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate
NULL-terminated va lists. (#165683)
2005-01-29 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw):
@ -18,6 +23,9 @@ Thu Jan 27 14:25:45 2005 Manish Singh <yosh@gimp.org>
2005-01-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render):
Make wrapping work in RTL mode.
* gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
obey HIG spacing a bit more, add a hand cursor when over the
link button. (#163979, Jorn Baayen)

View File

@ -1,3 +1,8 @@
2005-01-31 Matthias Clasen <mclasen@redhat.com>
* modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate
NULL-terminated va lists. (#165683)
2005-01-29 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw):
@ -18,6 +23,9 @@ Thu Jan 27 14:25:45 2005 Manish Singh <yosh@gimp.org>
2005-01-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render):
Make wrapping work in RTL mode.
* gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
obey HIG spacing a bit more, add a hand cursor when over the
link button. (#163979, Jorn Baayen)

View File

@ -810,7 +810,7 @@ gtk_im_context_xim_set_cursor_location (GtkIMContext *context,
preedit_attr = XVaCreateNestedList (0,
XNSpotLocation, &spot,
0);
NULL);
XSetICValues (ic,
XNPreeditAttributes, preedit_attr,
NULL);
@ -857,7 +857,7 @@ gtk_im_context_xim_reset (GtkIMContext *context)
preedit_attr = XVaCreateNestedList(0,
XNPreeditState, &preedit_state,
0);
NULL);
if (!XGetICValues(ic,
XNPreeditAttributes, preedit_attr,
NULL))
@ -869,7 +869,7 @@ gtk_im_context_xim_reset (GtkIMContext *context)
preedit_attr = XVaCreateNestedList(0,
XNPreeditState, preedit_state,
0);
NULL);
if (have_preedit_state)
XSetICValues(ic,
XNPreeditAttributes, preedit_attr,