main: Use GBusNameOwnerFlags to specify flags

We are still using DBUS_NAME_FLAG_REPLACE_EXISTING from dbus-glib
in some places (whose headers are drawn in via telepathy-glib).
As both GIO and dbus-glib use the values that will end up being
sent on the bus, the define and enum value are interchangeable,
but it's clearly better to consistently use the library that is
explicitly included.

https://bugzilla.gnome.org/show_bug.cgi?id=771721
This commit is contained in:
Florian Müllner 2017-03-10 16:20:25 +01:00
parent 3c828c8387
commit 8f8e512b37

View File

@ -139,7 +139,7 @@ shell_dbus_init (gboolean replace)
request_name_flags = G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT;
if (replace)
request_name_flags |= DBUS_NAME_FLAG_REPLACE_EXISTING;
request_name_flags |= G_BUS_NAME_OWNER_FLAGS_REPLACE;
shell_dbus_acquire_name (bus,
request_name_flags,
@ -169,7 +169,7 @@ shell_dbus_init (gboolean replace)
NULL);
/* ...and the on-screen keyboard service */
shell_dbus_acquire_name (bus,
DBUS_NAME_FLAG_REPLACE_EXISTING,
G_BUS_NAME_OWNER_FLAGS_REPLACE,
&request_name_result,
"org.gnome.Caribou.Keyboard", FALSE);
g_object_unref (bus);