aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-glib/server.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-05-15 15:03:35 -0500
committerTed Gould <ted@canonical.com>2009-05-15 15:03:35 -0500
commite95af4b8e1facef6fe42346ecc73ef14cb92b640 (patch)
tree7fb84c11c8c4b8d649287753295d5a1e93455c06 /libdbusmenu-glib/server.c
parente45d87762470fc1b0ce363d95de49e94be17444f (diff)
downloadlibdbusmenu-e95af4b8e1facef6fe42346ecc73ef14cb92b640.tar.gz
libdbusmenu-e95af4b8e1facef6fe42346ecc73ef14cb92b640.tar.bz2
libdbusmenu-e95af4b8e1facef6fe42346ecc73ef14cb92b640.zip
Reworking the DBus interface slightly. Making it so that the properties are now sent in a dict and that there isn't an arbitrary listing of things. It's either grab all or grab one. Seems to apply to the use cases better.
Diffstat (limited to 'libdbusmenu-glib/server.c')
-rw-r--r--libdbusmenu-glib/server.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libdbusmenu-glib/server.c b/libdbusmenu-glib/server.c
index 37659af..3e2fd78 100644
--- a/libdbusmenu-glib/server.c
+++ b/libdbusmenu-glib/server.c
@@ -36,7 +36,6 @@ License version 3 and version 2.1 along with this program. If not, see
/* DBus Prototypes */
static gboolean _dbusmenu_server_get_property (DbusmenuServer * server, guint id, gchar * property, gchar ** value, GError ** error);
static gboolean _dbusmenu_server_get_properties (void);
-static gboolean _dbusmenu_server_list_properties (void);
static gboolean _dbusmenu_server_call (DbusmenuServer * server, guint id, GError ** error);
#include "dbusmenu-server.h"
@@ -370,13 +369,6 @@ _dbusmenu_server_get_properties (void)
}
static gboolean
-_dbusmenu_server_list_properties (void)
-{
-
- return TRUE;
-}
-
-static gboolean
_dbusmenu_server_call (DbusmenuServer * server, guint id, GError ** error)
{
DbusmenuServerPrivate * priv = DBUSMENU_SERVER_GET_PRIVATE(server);