Avoid a compiler warning. (#122725, Kjartan Maraas)

Tue Jan 27 02:00:37 2004  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtktreeitem.c (gtk_tree_item_add_pixmaps): Avoid a
	compiler warning.  (#122725, Kjartan Maraas)
This commit is contained in:
Matthias Clasen 2004-01-27 00:58:48 +00:00 committed by Matthias Clasen
parent edaa41829b
commit a2beab833b
6 changed files with 27 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Tue Jan 27 02:00:37 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeitem.c (gtk_tree_item_add_pixmaps): Avoid a
compiler warning. (#122725, Kjartan Maraas)
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
Make menus work better on Xinerama (#126150):

View File

@ -1,3 +1,8 @@
Tue Jan 27 02:00:37 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeitem.c (gtk_tree_item_add_pixmaps): Avoid a
compiler warning. (#122725, Kjartan Maraas)
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
Make menus work better on Xinerama (#126150):

View File

@ -1,3 +1,8 @@
Tue Jan 27 02:00:37 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeitem.c (gtk_tree_item_add_pixmaps): Avoid a
compiler warning. (#122725, Kjartan Maraas)
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
Make menus work better on Xinerama (#126150):

View File

@ -1,3 +1,8 @@
Tue Jan 27 02:00:37 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeitem.c (gtk_tree_item_add_pixmaps): Avoid a
compiler warning. (#122725, Kjartan Maraas)
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
Make menus work better on Xinerama (#126150):

View File

@ -1,3 +1,8 @@
Tue Jan 27 02:00:37 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreeitem.c (gtk_tree_item_add_pixmaps): Avoid a
compiler warning. (#122725, Kjartan Maraas)
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
Make menus work better on Xinerama (#126150):

View File

@ -393,14 +393,14 @@ gtk_tree_item_add_pixmaps (GtkTreeItem *tree_item)
gdk_pixmap_create_from_xpm_d (GTK_WIDGET (tree_item)->window,
&pixmap_node->mask_plus,
NULL,
tree_plus);
(gchar **)tree_plus);
/* create pixmaps for minus icon */
pixmap_node->pixmap_minus =
gdk_pixmap_create_from_xpm_d (GTK_WIDGET (tree_item)->window,
&pixmap_node->mask_minus,
NULL,
tree_minus);
(gchar **)tree_minus);
tree_item->pixmaps = pixmaps = g_list_prepend (pixmaps, pixmap_node);
}