Revision: 6756
Author: nogu.dev
Date: Sat Sep 11 01:15:48 2010
Log: * helper/eggtrayicon.c
- (egg_tray_icon_expose): Use gtk_widget_get_state()
instead of deprecated GTK_WIDGET_STATE.
http://code.google.com/p/uim/source/detail?r=6756
Modified:
/trunk/helper/eggtrayicon.c
=======================================
--- /trunk/helper/eggtrayicon.c Sat Sep 11 01:15:39 2010
+++ /trunk/helper/eggtrayicon.c Sat Sep 11 01:15:48 2010
@@ -284,7 +284,7 @@
height = widget->allocation.height - 2 * border_width;
gtk_paint_focus (widget->style, widget->window,
- GTK_WIDGET_STATE (widget),
+ gtk_widget_get_state (widget),
&event->area, widget, "tray_icon",
x, y, width, height);
}