comparison pidgin/gtkmenutray.c @ 32679:6142c3f0868f

Fix minor unused variable warning.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sat, 08 Oct 2011 22:17:55 +0000
parents 9a0990fd41ed
children 3538e783b98c
comparison
equal deleted inserted replaced
32678:1c7c89f41081 32679:6142c3f0868f
90 } 90 }
91 91
92 static void 92 static void
93 pidgin_menu_tray_finalize(GObject *obj) 93 pidgin_menu_tray_finalize(GObject *obj)
94 { 94 {
95 #if !GTK_CHECK_VERSION(2,12,0)
95 PidginMenuTray *tray = PIDGIN_MENU_TRAY(obj); 96 PidginMenuTray *tray = PIDGIN_MENU_TRAY(obj);
97 #endif
96 #if 0 98 #if 0
97 /* This _might_ be leaking, but I have a sneaking suspicion that the widget is 99 /* This _might_ be leaking, but I have a sneaking suspicion that the widget is
98 * getting destroyed in GtkContainer's finalize function. But if were are 100 * getting destroyed in GtkContainer's finalize function. But if were are
99 * leaking here, be sure to figure out why this causes a crash. 101 * leaking here, be sure to figure out why this causes a crash.
100 * -- Gary 102 * -- Gary