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
@ -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>
|
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
Make menus work better on Xinerama (#126150):
|
Make menus work better on Xinerama (#126150):
|
||||||
|
|||||||
@ -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>
|
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
Make menus work better on Xinerama (#126150):
|
Make menus work better on Xinerama (#126150):
|
||||||
|
|||||||
@ -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>
|
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
Make menus work better on Xinerama (#126150):
|
Make menus work better on Xinerama (#126150):
|
||||||
|
|||||||
@ -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>
|
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
Make menus work better on Xinerama (#126150):
|
Make menus work better on Xinerama (#126150):
|
||||||
|
|||||||
@ -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>
|
Tue Jan 27 01:46:54 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
Make menus work better on Xinerama (#126150):
|
Make menus work better on Xinerama (#126150):
|
||||||
|
|||||||
@ -393,14 +393,14 @@ gtk_tree_item_add_pixmaps (GtkTreeItem *tree_item)
|
|||||||
gdk_pixmap_create_from_xpm_d (GTK_WIDGET (tree_item)->window,
|
gdk_pixmap_create_from_xpm_d (GTK_WIDGET (tree_item)->window,
|
||||||
&pixmap_node->mask_plus,
|
&pixmap_node->mask_plus,
|
||||||
NULL,
|
NULL,
|
||||||
tree_plus);
|
(gchar **)tree_plus);
|
||||||
|
|
||||||
/* create pixmaps for minus icon */
|
/* create pixmaps for minus icon */
|
||||||
pixmap_node->pixmap_minus =
|
pixmap_node->pixmap_minus =
|
||||||
gdk_pixmap_create_from_xpm_d (GTK_WIDGET (tree_item)->window,
|
gdk_pixmap_create_from_xpm_d (GTK_WIDGET (tree_item)->window,
|
||||||
&pixmap_node->mask_minus,
|
&pixmap_node->mask_minus,
|
||||||
NULL,
|
NULL,
|
||||||
tree_minus);
|
(gchar **)tree_minus);
|
||||||
|
|
||||||
tree_item->pixmaps = pixmaps = g_list_prepend (pixmaps, pixmap_node);
|
tree_item->pixmaps = pixmaps = g_list_prepend (pixmaps, pixmap_node);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user