]> Dogcows Code - chaz/openbox/blobdiff - openbox/window.c
add a reconfigure action, also reconfigure on SIGUSR2.
[chaz/openbox] / openbox / window.c
index 3f28a93f1dbe86d25524c14e81a2efafe34c6f8e..8b986b1b422f8a814b4a15c6931a7bfb4788ea27 100644 (file)
@@ -7,13 +7,17 @@
 
 GHashTable *window_map;
 
-void window_startup()
+void window_startup(gboolean reconfig)
 {
+    if (reconfig) return;
+
     window_map = g_hash_table_new(g_int_hash, g_int_equal);
 }
 
-void window_shutdown()
+void window_shutdown(gboolean reconfig)
 {
+    if (reconfig) return;
+
     g_hash_table_destroy(window_map);
 }
 
This page took 0.021137 seconds and 4 git commands to generate.