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:
parent
3c828c8387
commit
8f8e512b37
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user