summaryrefslogtreecommitdiff
path: root/gtk/gtktreeitem.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-01-27 00:58:48 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-01-27 00:58:48 +0000
commita2beab833b24c850c1a8347b60ea02d2436e5ba9 (patch)
tree0c1494b404fc91f2dc8048df0f56db7cad97fb74 /gtk/gtktreeitem.c
parentedaa41829b989a974a8284bcf49c0ffa5aa626a7 (diff)
downloadgtk+-a2beab833b24c850c1a8347b60ea02d2436e5ba9.tar.gz
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)
Diffstat (limited to 'gtk/gtktreeitem.c')
-rw-r--r--gtk/gtktreeitem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktreeitem.c b/gtk/gtktreeitem.c
index e98e7208d7..d2036c3c8b 100644
--- a/gtk/gtktreeitem.c
+++ b/gtk/gtktreeitem.c
@@ -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);
}