diff options
author | Ted Gould <ted@canonical.com> | 2009-05-26 16:30:31 +0200 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-05-26 16:30:31 +0200 |
commit | cbb755048072eedc3707119e415b2cd53668125b (patch) | |
tree | 279fdd93e03027242c1fd24d2a718b6f8395ca7a /src/app-menu-item.h | |
parent | 67b8e020399db87d2865843c7c4ad651f07ac31d (diff) | |
download | ayatana-indicator-messages-cbb755048072eedc3707119e415b2cd53668125b.tar.gz ayatana-indicator-messages-cbb755048072eedc3707119e415b2cd53668125b.tar.bz2 ayatana-indicator-messages-cbb755048072eedc3707119e415b2cd53668125b.zip |
Converting to a DbusmenuMenuitem instead of GtkMenuItem
Diffstat (limited to 'src/app-menu-item.h')
-rw-r--r-- | src/app-menu-item.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app-menu-item.h b/src/app-menu-item.h index 1e1b5eb..dda4765 100644 --- a/src/app-menu-item.h +++ b/src/app-menu-item.h @@ -25,6 +25,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <glib.h> #include <glib-object.h> +#include <libdbusmenu-glib/menuitem.h> #include <libindicate/listener.h> G_BEGIN_DECLS @@ -43,14 +44,14 @@ typedef struct _AppMenuItem AppMenuItem; typedef struct _AppMenuItemClass AppMenuItemClass; struct _AppMenuItemClass { - GtkMenuItemClass parent_class; + DbusmenuMenuitemClass parent_class; void (* count_changed) (guint count); void (* name_changed) (gchar * name); }; struct _AppMenuItem { - GtkMenuItem parent; + DbusmenuMenuitem parent; }; GType app_menu_item_get_type (void); |