diff options
Diffstat (limited to 'src/terminal.c')
-rw-r--r-- | src/terminal.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/terminal.c b/src/terminal.c index 8504422..7434229 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -409,7 +409,7 @@ name_lost_cb (GDBusConnection *connection, * /apps/mate-terminal/profiles/Foo/ * * It's somewhat tricky to manage the profiles/ dir since we need to track - * the list of profiles, but mateconf doesn't have a concept of notifying that + * the list of profiles, but GSettings doesn't have a concept of notifying that * a directory has appeared or disappeared. * * Session state is stored entirely in the RestartCommand command line. @@ -419,7 +419,7 @@ name_lost_cb (GDBusConnection *connection, * OVERLAP. The UI and implementation totally break if you overlap * these categories. See mate-terminal 1.x for why. * - * Don't use this code as an example of how to use MateConf - it's hugely + * Don't use this code as an example of how to use GSettings - it's hugely * overcomplicated due to the profiles stuff. Most apps should not * have to do scary things of this nature, and should not have * a profiles feature. @@ -519,9 +519,6 @@ main (int argc, char **argv) bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); - /* MateConf uses MateCORBA2 which need GThread. See bug #565516 */ - g_thread_init (NULL); - _terminal_debug_init (); /* Make a NULL-terminated copy since we may need it later */ |