diff options
author | Felix Riemann <[email protected]> | 2012-08-12 16:35:46 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-17 21:53:38 +0200 |
commit | a3c97eb293bfff825c43bd10d5584ae5a20f5495 (patch) | |
tree | 182bf7d6d551653c00b2e376bb7d9b4ec1f6cfac /src/main.c | |
parent | bb3b0c0a009cbf5f699a37c656b43bdc5a12b7b0 (diff) | |
download | eom-a3c97eb293bfff825c43bd10d5584ae5a20f5495.tar.bz2 eom-a3c97eb293bfff825c43bd10d5584ae5a20f5495.tar.xz |
EomApplication: Make most members private
This allows plugin usage without installing toolbar editor headers.
origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/e647078
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,6 +35,7 @@ #include "eom-thumbnail.h" #include "eom-job-queue.h" #include "eom-application.h" +#include "eom-application-internal.h" #include "eom-util.h" #include <string.h> @@ -161,7 +162,7 @@ main (int argc, char **argv) gtk_window_set_default_icon_name ("eom"); g_set_application_name (_("Eye of MATE Image Viewer")); - EOM_APP->flags = flags; + EOM_APP->priv->flags = flags; if (force_new_instance) { GApplicationFlags app_flags = g_application_get_flags (G_APPLICATION (EOM_APP)); app_flags |= G_APPLICATION_NON_UNIQUE; |