diff options
author | Michael Terry <michael.terry@canonical.com> | 2010-06-19 01:44:59 -0400 |
---|---|---|
committer | Michael Terry <michael.terry@canonical.com> | 2010-06-19 01:44:59 -0400 |
commit | e1f36a8445d1851f15a396ba5488119c298e593d (patch) | |
tree | e8f36d86a3c37dc3063faba04de7c7f865e84a81 /src/app-indicator.c | |
parent | 87d82b8a092ec250ba08c14e95e3309ae2cc4f39 (diff) | |
download | libayatana-appindicator-e1f36a8445d1851f15a396ba5488119c298e593d.tar.gz libayatana-appindicator-e1f36a8445d1851f15a396ba5488119c298e593d.tar.bz2 libayatana-appindicator-e1f36a8445d1851f15a396ba5488119c298e593d.zip |
first pass at gtk3 version of libappindicator
Diffstat (limited to 'src/app-indicator.c')
-rw-r--r-- | src/app-indicator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index bc43e58..939ca9a 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -1270,7 +1270,7 @@ widget_notify_cb (GtkWidget *widget, { dbusmenu_menuitem_property_set_bool (child, DBUSMENU_MENUITEM_PROP_ENABLED, - GTK_WIDGET_IS_SENSITIVE (widget)); + gtk_widget_is_sensitive (widget)); } else if (pspec->name == g_intern_static_string ("label")) { @@ -1422,7 +1422,7 @@ container_iterate (GtkWidget *widget, dbusmenu_menuitem_property_set_bool (child, DBUSMENU_MENUITEM_PROP_ENABLED, - GTK_WIDGET_IS_SENSITIVE (widget)); + gtk_widget_is_sensitive (widget)); dbusmenu_menuitem_property_set_bool (child, DBUSMENU_MENUITEM_PROP_VISIBLE, gtk_widget_get_visible (widget)); |