diff options
author | Claudio Saavedra <[email protected]> | 2011-06-09 22:33:30 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-08 12:19:44 +0200 |
commit | 20d704b7b4f2560ee27cc9be25359107ceb4a14b (patch) | |
tree | 202e9a1335722c7f288019972b4e4afe5ae0f98a /src/eom-util.c | |
parent | 63a6313edf251919487047f47ad1f08228e7ba8d (diff) | |
download | eom-20d704b7b4f2560ee27cc9be25359107ceb4a14b.tar.bz2 eom-20d704b7b4f2560ee27cc9be25359107ceb4a14b.tar.xz |
Port EomApplication to GtkApplication
This removes the direct dependency on dbus and makes use of the
GApplication/GtkApplication facilities for uniqueness and activation.
Bump the glib requirement to 2.29.4, since we need
G_APPLICATION_NON_UNIQUE.
https://bugzilla.gnome.org/show_bug.cgi?id=622876
origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/3d39587
Enable TotemScreensaver unconditionally
It uses GDBus instead of libdbus now. It can be enabled even if
libdbus is not available as GDBus/GIO is always present.
origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/4c32882
Diffstat (limited to 'src/eom-util.c')
-rw-r--r-- | src/eom-util.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/eom-util.c b/src/eom-util.c index 33bd36f..bfffbcf 100644 --- a/src/eom-util.c +++ b/src/eom-util.c @@ -157,7 +157,6 @@ eom_util_string_list_to_file_list (GSList *string_list) return g_slist_reverse (file_list); } -#ifdef HAVE_DBUS GSList* eom_util_strings_to_file_list (gchar **strings) { @@ -171,7 +170,6 @@ eom_util_strings_to_file_list (gchar **strings) return g_slist_reverse (file_list); } -#endif GSList* eom_util_string_array_to_list (const gchar **files, gboolean create_uri) |