From 11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Fri, 3 Feb 2006 12:29:24 +0000 Subject: Fix non-debug builds. 2006-02-03 Christian Persch * src/ephy-main.c: Fix non-debug builds. --- src/ephy-main.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/ephy-main.c') diff --git a/src/ephy-main.c b/src/ephy-main.c index 62d5906a4..176bbf66b 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -60,7 +60,6 @@ static GQuark startup_error_quark = 0; static gboolean open_in_new_tab = FALSE; static gboolean open_in_new_window = FALSE; static gboolean open_as_bookmarks_editor = FALSE; -static gboolean private_instance = FALSE; //static gboolean reload_plugins = FALSE; static char *session_filename = NULL; @@ -68,6 +67,11 @@ static char *bookmark_url = NULL; static char *bookmarks_file = NULL; static char **extra_arguments = NULL; +/* Only set from options in debug builds */ +static gboolean private_instance = FALSE; +static gboolean keep_profile_directory = FALSE; +static char *profile_directory = NULL; + static const GOptionEntry option_entries[] = { { "new-tab", 'n', 0, G_OPTION_ARG_NONE, &open_in_new_tab, @@ -111,9 +115,6 @@ static const GOptionEntry libgnome_option_entries[] = #endif /* !GNOME_PARAM_GOPTION_CONTEXT */ #ifdef GNOME_ENABLE_DEBUG -static gboolean keep_profile_directory = FALSE; -static char *profile_directory = NULL; - static GOptionEntry debug_option_entries[] = { { "private-instance", 0, 0, G_OPTION_ARG_NONE, &private_instance, -- cgit