diff options
author | Ted Gould <ted@gould.cx> | 2011-02-24 14:04:25 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-24 14:04:25 -0600 |
commit | b62773082193e463d4fa717730734e7a352ebfec (patch) | |
tree | 98f1f8f9aadd2cc23f3ea5487ea32a2f790eccfe /libdbusmenu-glib/server.c | |
parent | 8a35898a425f15ee144e7b87e0dec9f8e38431de (diff) | |
parent | 3566852c8b4330cff84f4a7c6bcf18601264f747 (diff) | |
download | libdbusmenu-b62773082193e463d4fa717730734e7a352ebfec.tar.gz libdbusmenu-b62773082193e463d4fa717730734e7a352ebfec.tar.bz2 libdbusmenu-b62773082193e463d4fa717730734e7a352ebfec.zip |
* Upstream Merge
* Fixing state property
Diffstat (limited to 'libdbusmenu-glib/server.c')
-rw-r--r-- | libdbusmenu-glib/server.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdbusmenu-glib/server.c b/libdbusmenu-glib/server.c index e3fd2cd..056d6cb 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -744,6 +744,8 @@ bus_get_prop (GDBusConnection * connection, const gchar * sender, const gchar * return g_variant_new_uint32(DBUSMENU_VERSION_NUMBER); } else if (g_strcmp0(property, "text-direction") == 0) { return g_variant_new_string(dbusmenu_text_direction_get_nick(priv->text_direction)); + } else if (g_strcmp0(property, "status") == 0) { + return g_variant_new_string(dbusmenu_status_get_nick(priv->status)); } else { g_warning("Unknown property '%s'", property); } |