why aren't these variables getting initialized. how exactly is openbox not being super strange without that..?

This commit is contained in:
Dana Jansens 2007-03-03 03:00:05 +00:00
parent 8343a8192f
commit 56c5c7d15f

View file

@ -76,16 +76,17 @@ RrTheme *ob_rr_theme;
ObMainLoop *ob_main_loop; ObMainLoop *ob_main_loop;
Display *ob_display; Display *ob_display;
gint ob_screen; gint ob_screen;
gboolean ob_replace_wm; gboolean ob_replace_wm = FALSE;
static ObState state; static ObState state;
static gboolean xsync; static gboolean xsync = FALSE;
static gboolean reconfigure; static gboolean reconfigure = FALSE;
static gboolean restart; static gboolean restart = FALSE;
static gchar *restart_path; static gchar *restart_path = NULL;
static Cursor cursors[OB_NUM_CURSORS]; static Cursor cursors[OB_NUM_CURSORS];
static KeyCode keys[OB_NUM_KEYS]; static KeyCode keys[OB_NUM_KEYS];
static gint exitcode = 0; static gint exitcode = 0;
static gboolean reconfigure_and_exit = FALSE;
static void signal_handler(gint signal, gpointer data); static void signal_handler(gint signal, gpointer data);
static void parse_args(gint argc, gchar **argv); static void parse_args(gint argc, gchar **argv);