]> Dogcows Code - chaz/openbox/commitdiff
why aren't these variables getting initialized. how exactly is openbox not being...
authorDana Jansens <danakj@orodu.net>
Sat, 3 Mar 2007 03:00:05 +0000 (03:00 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 3 Mar 2007 03:00:05 +0000 (03:00 +0000)
openbox/openbox.c

index 7e8fadc2eb4e7420d0cde5f9aa461e12cd307c40..7d2efd6e5b98510966397048398e3ab813d6b5c2 100644 (file)
@@ -76,16 +76,17 @@ RrTheme    *ob_rr_theme;
 ObMainLoop *ob_main_loop;
 Display    *ob_display;
 gint        ob_screen;
-gboolean    ob_replace_wm;
+gboolean    ob_replace_wm = FALSE;
 
 static ObState   state;
-static gboolean  xsync;
-static gboolean  reconfigure;
-static gboolean  restart;
-static gchar    *restart_path;
+static gboolean  xsync = FALSE;
+static gboolean  reconfigure = FALSE;
+static gboolean  restart = FALSE;
+static gchar    *restart_path = NULL;
 static Cursor    cursors[OB_NUM_CURSORS];
 static KeyCode   keys[OB_NUM_KEYS];
 static gint      exitcode = 0;
+static gboolean  reconfigure_and_exit = FALSE;
 
 static void signal_handler(gint signal, gpointer data);
 static void parse_args(gint argc, gchar **argv);
This page took 0.023464 seconds and 4 git commands to generate.