diff options
author | Stefano Karapetsas <[email protected]> | 2014-04-23 19:29:22 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-04-23 19:29:22 +0200 |
commit | 693c6c76c7cf54f6e314255760b05198a99ac4d5 (patch) | |
tree | 81b4742741c3c6b1324848bd5e6c5b5b4af276ce /src/terminal-app.c | |
parent | 6767fa71d3a17c73f7d9ffa49004dcc68feb7e7a (diff) | |
download | mate-terminal-693c6c76c7cf54f6e314255760b05198a99ac4d5.tar.bz2 mate-terminal-693c6c76c7cf54f6e314255760b05198a99ac4d5.tar.xz |
Use common dconf functions from libmate-desktop
Diffstat (limited to 'src/terminal-app.c')
-rw-r--r-- | src/terminal-app.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/terminal-app.c b/src/terminal-app.c index 71d14ee..bdbd50e 100644 --- a/src/terminal-app.c +++ b/src/terminal-app.c @@ -37,7 +37,7 @@ #include "profile-editor.h" #include "terminal-encoding.h" #include "terminal-gsettings.h" -#include "terminal-dconf.h" +#include <libmate-desktop/mate-dconf.h> #include <string.h> #include <stdlib.h> #include <time.h> @@ -331,7 +331,7 @@ terminal_app_delete_profile (TerminalApp *app, terminal_gsettings_remove_all_from_strv (app->settings_global, PROFILE_LIST_KEY, profile_name); /* And remove the profile directory */ - if (!terminal_dconf_recursive_reset (profile_dir, &error)) + if (!mate_dconf_recursive_reset (profile_dir, &error)) { g_warning ("Failed to recursively unset %s: %s\n", profile_dir, error->message); g_error_free (error); |