diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-02-03 20:29:24 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-02-03 20:29:24 +0800 |
commit | 11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3 (patch) | |
tree | e9f146b63baf92676a545d6c431acd1b33c005d2 /src/ephy-main.c | |
parent | 6fa30a211118e8fac316541b1886c8426c840235 (diff) | |
download | gsoc2013-epiphany-11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3.tar gsoc2013-epiphany-11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3.tar.gz gsoc2013-epiphany-11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3.tar.bz2 gsoc2013-epiphany-11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3.tar.lz gsoc2013-epiphany-11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3.tar.xz gsoc2013-epiphany-11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3.tar.zst gsoc2013-epiphany-11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3.zip |
Fix non-debug builds.
2006-02-03 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-main.c:
Fix non-debug builds.
Diffstat (limited to 'src/ephy-main.c')
-rw-r--r-- | src/ephy-main.c | 9 |
1 files changed, 5 insertions, 4 deletions
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, |