From 36fbe777074a006a6f53f5cb11ba666195c1146c Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Mon, 22 Oct 2007 22:22:45 +0000 Subject: fix regression that requires a defined default DISPLAY in order to run 2007-10-23 Lucas Rocha * gconf/gconf-sanity-check.c (main): fix regression that requires a defined default DISPLAY in order to run sanity check program when it shouldn't. svn path=/trunk/; revision=2489 --- ChangeLog | 6 ++++++ gconf/gconf-sanity-check.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 612c203b..c0d73bde 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-23 Lucas Rocha + + * gconf/gconf-sanity-check.c (main): fix regression that requires a + defined default DISPLAY in order to run sanity check program when it + shouldn't. + 2007-10-15 Kjartan Maraas * configure.in: Post release bump. diff --git a/gconf/gconf-sanity-check.c b/gconf/gconf-sanity-check.c index 6f28663e..79815615 100644 --- a/gconf/gconf-sanity-check.c +++ b/gconf/gconf-sanity-check.c @@ -46,7 +46,7 @@ main (int argc, char** argv) g_thread_init (NULL); context = g_option_context_new (_("- Sanity checks for GConf")); - g_option_context_add_group (context, gtk_get_option_group (TRUE)); + g_option_context_add_group (context, gtk_get_option_group (FALSE)); error = NULL; g_option_context_parse (context, &argc, &argv, &error); -- cgit v1.2.1