summaryrefslogtreecommitdiff
path: root/services
diff options
authorSebastien Bacher <seb128@ubuntu.com>2012-08-02 17:41:20 +0200
committerSebastien Bacher <seb128@ubuntu.com>2012-08-02 17:41:20 +0200
commit015c20fe76b100834bbab4c9f698fe0f2823023e (patch)
treebf976ddf6941bef4281087d9faf275fe65862b8e /services
parentb70fb51d7f6d1d334945ce5f016051e09084f124 (diff)
Don't specify a specific destination for the dbus signals, that
creates issues with the new dbus eavedropping behaviour, thanks Neil J. Patel for the fix! Fixes LP: #1014850 (bzr r2529.5.1)
Diffstat (limited to 'services')
-rw-r--r--services/panel-main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/services/panel-main.c b/services/panel-main.c
index e48f2b993..4bc5a5160 100644
--- a/services/panel-main.c
+++ b/services/panel-main.c
@@ -235,7 +235,7 @@ on_service_resync (PanelService *service, const gchar *indicator_id, GDBusConnec
{
GError *error = NULL;
g_dbus_connection_emit_signal (connection,
- S_NAME,
+ NULL,
S_PATH,
S_IFACE,
"ReSync",
@@ -256,7 +256,7 @@ on_service_entry_activated (PanelService *service,
{
GError *error = NULL;
g_dbus_connection_emit_signal (connection,
- S_NAME,
+ NULL,
S_PATH,
S_IFACE,
"EntryActivated",
@@ -278,7 +278,7 @@ on_service_entry_activate_request (PanelService *service,
GError *error = NULL;
g_warning ("%s, entry_id:%s", G_STRFUNC, entry_id);
g_dbus_connection_emit_signal (connection,
- S_NAME,
+ NULL,
S_PATH,
S_IFACE,
"EntryActivateRequest",
@@ -300,7 +300,7 @@ on_service_entry_show_now_changed (PanelService *service,
{
GError *error = NULL;
g_dbus_connection_emit_signal (connection,
- S_NAME,
+ NULL,
S_PATH,
S_IFACE,
"EntryShowNowChanged",