all repos — openbox @ d81c4be6001a711e9f0dea247f43d8de670bc27f

openbox fork - make it a bit more like ryudo

don't assert when you window_find(0)/dockapp_find(0), just return 0
Dana Jansens danakj@orodu.net
commit

d81c4be6001a711e9f0dea247f43d8de670bc27f

parent

90ca468efa678428f655765ffb0190da2a41b23c

2 files changed, 0 insertions(+), 2 deletions(-)

jump to
M openbox/dock.copenbox/dock.c

@@ -651,7 +651,6 @@ }

ObDockApp* dock_find_dockapp(Window xwin) { - g_assert(xwin != None); GList *it; /* there are never that many dock apps, so we can use a list here instead of a hash table */
M openbox/window.copenbox/window.c

@@ -76,7 +76,6 @@ }

ObWindow* window_find(Window xwin) { - g_assert(xwin != None); return g_hash_table_lookup(window_map, &xwin); }