~charlesk/appmenu-gtk/lp-788640

« back to all changes in this revision

Viewing changes to src/bridge.h

  • Committer: Cody Russell
  • Date: 2010-06-07 17:19:14 UTC
  • mfrom: (13.1.1 appmenu-gtk)
  • Revision ID: crussell@canonical.com-20100607171914-xmdd3257s67npdub
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef __APP_MENU_BRIDGE_H__
21
21
#define __APP_MENU_BRIDGE_H__
22
22
 
23
 
#include <gtk/ubuntumenuproxy.h>
 
23
#include <gtk/gtkmenuproxy.h>
24
24
 
25
25
#define APP_MENU_TYPE_BRIDGE         (app_menu_bridge_get_type ())
26
26
#define APP_MENU_BRIDGE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), APP_MENU_TYPE_BRIDGE, AppMenuBridge))
35
35
 
36
36
struct _AppMenuBridge
37
37
{
38
 
  UbuntuMenuProxy parent_object;
 
38
  GtkMenuProxy parent_object;
39
39
  AppMenuBridgePrivate *priv;
40
40
};
41
41
 
42
42
struct _AppMenuBridgeClass
43
43
{
44
 
  UbuntuMenuProxyClass parent_class;
 
44
  GtkMenuProxyClass parent_class;
45
45
};
46
46
 
47
47
GType app_menu_bridge_get_type () G_GNUC_CONST;