diff options
author | Stefano Karapetsas <[email protected]> | 2014-03-09 19:30:21 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-03-09 19:30:21 +0100 |
commit | 4deb284a83cee61c31240e14c0e095d95f206422 (patch) | |
tree | 1b53cf5297db3ac82a093933a70cc1f1545e501c /capplets/default-applications/mate-da-capplet.h | |
parent | 6e6a19dc4b069e812ff5dad875a233030ede5637 (diff) | |
download | mate-control-center-4deb284a83cee61c31240e14c0e095d95f206422.tar.bz2 mate-control-center-4deb284a83cee61c31240e14c0e095d95f206422.tar.xz |
default-applications: Fix 'run at start' checkboxes for accessibility apps
Diffstat (limited to 'capplets/default-applications/mate-da-capplet.h')
-rw-r--r-- | capplets/default-applications/mate-da-capplet.h | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/capplets/default-applications/mate-da-capplet.h b/capplets/default-applications/mate-da-capplet.h index dde385ee..cd9f2afc 100644 --- a/capplets/default-applications/mate-da-capplet.h +++ b/capplets/default-applications/mate-da-capplet.h @@ -24,14 +24,16 @@ #include <gtk/gtk.h> -#define TERMINAL_SCHEMA "org.mate.applications-terminal" -#define TERMINAL_KEY "exec" +#define TERMINAL_SCHEMA "org.mate.applications-terminal" +#define TERMINAL_KEY "exec" -#define VISUAL_SCHEMA "org.mate.applications-at-visual" -#define VISUAL_KEY "exec" +#define VISUAL_SCHEMA "org.mate.applications-at-visual" +#define VISUAL_KEY "exec" +#define VISUAL_STARTUP_KEY "startup" -#define MOBILITY_SCHEMA "org.mate.applications-at-mobility" -#define MOBILITY_KEY "exec" +#define MOBILITY_SCHEMA "org.mate.applications-at-mobility" +#define MOBILITY_KEY "exec" +#define MOBILITY_STARTUP_KEY "startup" typedef struct _MateDACapplet { GtkBuilder* builder; @@ -117,6 +119,11 @@ typedef struct _MateDACapplet { GList* file_managers; GList* text_editors; GList* image_viewers; + + /* Settings objects */ + GSettings* terminal_settings; + GSettings* visual_settings; + GSettings* mobility_settings; } MateDACapplet; #endif |