diff options
author | monsta <[email protected]> | 2017-05-07 14:07:09 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2017-05-07 14:08:51 +0300 |
commit | dc45e7f739dad78542d53b11ee4992e83d61ddf5 (patch) | |
tree | 9b08235c17a4bd90b8aa2b1be3fe8ecd619738ab | |
parent | 6ece67ffa2b3c90f4c0ae69147b62ea255da3636 (diff) | |
download | caja-dc45e7f739dad78542d53b11ee4992e83d61ddf5.tar.bz2 caja-dc45e7f739dad78542d53b11ee4992e83d61ddf5.tar.xz |
pass CajaApplication instead of GApplication to DBus init
fixes a build warning
-rw-r--r-- | src/caja-application.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-application.c b/src/caja-application.c index 1f11dfa3..c642ee50 100644 --- a/src/caja-application.c +++ b/src/caja-application.c @@ -2339,7 +2339,7 @@ caja_application_startup (GApplication *app) G_APPLICATION_CLASS (caja_application_parent_class)->startup (app); /* Start the File Manager DBus Interface */ - fdb_manager = caja_freedesktop_dbus_new (app); + fdb_manager = caja_freedesktop_dbus_new (self); /* Initialize preferences. This is needed so that proper * defaults are available before any preference peeking |