diff options
author | Ted Gould <ted@gould.cx> | 2010-11-12 13:20:29 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-11-12 13:20:29 -0600 |
commit | e4b55fd76e9506e3ecfe98b60518849c8b1ac87d (patch) | |
tree | c893676e7c798d7e47d3b1fdad524bcc5360b903 /libdbusmenu-glib | |
parent | 37596991960990c127336ccc8527832a35d595ad (diff) | |
download | libdbusmenu-e4b55fd76e9506e3ecfe98b60518849c8b1ac87d.tar.gz libdbusmenu-e4b55fd76e9506e3ecfe98b60518849c8b1ac87d.tar.bz2 libdbusmenu-e4b55fd76e9506e3ecfe98b60518849c8b1ac87d.zip |
Switching the headers and private variables
Diffstat (limited to 'libdbusmenu-glib')
-rw-r--r-- | libdbusmenu-glib/client.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index 6a51764..2aa938c 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -30,7 +30,7 @@ License version 3 and version 2.1 along with this program. If not, see #include "config.h" #endif -#include <dbus/dbus-glib-bindings.h> +#include <gio/gio.h> #include <libxml/parser.h> #include <libxml/tree.h> @@ -39,7 +39,6 @@ License version 3 and version 2.1 along with this program. If not, see #include "menuitem.h" #include "menuitem-private.h" #include "client-menuitem.h" -#include "dbusmenu-client.h" #include "server-marshal.h" #include "client-marshal.h" @@ -69,15 +68,15 @@ struct _DbusmenuClientPrivate gchar * dbus_object; gchar * dbus_name; - DBusGConnection * session_bus; - DBusGProxy * menuproxy; - DBusGProxy * propproxy; - DBusGProxyCall * layoutcall; + GDBusConnection * session_bus; + GDBusProxy * menuproxy; + GDBusProxy * propproxy; + GCancellable * layoutcall; gint current_revision; gint my_revision; - DBusGProxy * dbusproxy; + GDBusProxy * dbusproxy; GHashTable * type_handlers; |