aboutsummaryrefslogtreecommitdiff
path: root/src/im-menu-item.h
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-05-26 16:30:37 +0200
committerTed Gould <ted@canonical.com>2009-05-26 16:30:37 +0200
commit994d5788563ece172f875cfa402ba61ea52e87a9 (patch)
tree75920084f5b134fea700de66dc63c033d25b775e /src/im-menu-item.h
parentcbb755048072eedc3707119e415b2cd53668125b (diff)
downloadayatana-indicator-messages-994d5788563ece172f875cfa402ba61ea52e87a9.tar.gz
ayatana-indicator-messages-994d5788563ece172f875cfa402ba61ea52e87a9.tar.bz2
ayatana-indicator-messages-994d5788563ece172f875cfa402ba61ea52e87a9.zip
Converting to a DbusmenuMenuitem instead of GtkMenuItem
Diffstat (limited to 'src/im-menu-item.h')
-rw-r--r--src/im-menu-item.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/im-menu-item.h b/src/im-menu-item.h
index f1f95ea..51414de 100644
--- a/src/im-menu-item.h
+++ b/src/im-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
@@ -42,13 +43,13 @@ typedef struct _ImMenuItem ImMenuItem;
typedef struct _ImMenuItemClass ImMenuItemClass;
struct _ImMenuItemClass {
- GtkMenuItemClass parent_class;
+ DbusmenuMenuitemClass parent_class;
void (*time_changed) (glong seconds);
};
struct _ImMenuItem {
- GtkMenuItem parent;
+ DbusmenuMenuitem parent;
};
GType im_menu_item_get_type (void);