changeset 1044:ea4e0c2df854

Fix a compiler warning regarding argument type.
author zas_
date Mon, 08 Sep 2008 15:53:01 +0000
parents 5fc64d6252e7
children 0ab0deb0cfcc
files src/ui_misc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ui_misc.c	Sun Sep 07 23:01:30 2008 +0000
+++ b/src/ui_misc.c	Mon Sep 08 15:53:01 2008 +0000
@@ -810,7 +810,7 @@
 
 #if GTK_CHECK_VERSION(2,12,0)
 
-		gtk_widget_set_tooltip_text(GTK_TOOL_ITEM(item), description);
+		gtk_widget_set_tooltip_text(item, description);
 			
 #else
 		GtkTooltips *tips;