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:
committed by
Matthias Clasen
parent
edaa41829b
commit
a2beab833b
@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user