diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-08-21 11:59:37 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-08-21 11:59:37 -0500 |
commit | 307dfae114b6ef067e0b94bde25f427f4f659277 (patch) | |
tree | 6844f1578f5fcf3a4a258eb2fa2bcb06ae11288b /src/exporter.cpp | |
parent | ce4b2f4c185105db22e1d6519c2b4d1ce0884008 (diff) | |
download | ayatana-indicator-display-307dfae114b6ef067e0b94bde25f427f4f659277.tar.gz ayatana-indicator-display-307dfae114b6ef067e0b94bde25f427f4f659277.tar.bz2 ayatana-indicator-display-307dfae114b6ef067e0b94bde25f427f4f659277.zip |
in src/exporter.cpp, use G_DBUS_NAME_OWNER_FLAGS_NONE when owning the busname
Diffstat (limited to 'src/exporter.cpp')
-rw-r--r-- | src/exporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exporter.cpp b/src/exporter.cpp index 8288b9a..f45d9d6 100644 --- a/src/exporter.cpp +++ b/src/exporter.cpp @@ -29,7 +29,7 @@ public: auto bus_name = g_strdup_printf("com.canonical.indicator.%s", indicator->name()); m_own_id = g_bus_own_name(G_BUS_TYPE_SESSION, bus_name, - G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT, + G_BUS_NAME_OWNER_FLAGS_NONE, on_bus_acquired, nullptr, on_name_lost, |