From: Dana Jansens Date: Wed, 19 Mar 2003 09:03:54 +0000 (+0000) Subject: erase the openbox_pid hint on the root window when we shutdown X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=bd9846e635ea570e076855ece48ec9e80344f728;p=chaz%2Fopenbox erase the openbox_pid hint on the root window when we shutdown --- diff --git a/openbox/screen.c b/openbox/screen.c index 3ff40df4..9a1a81ad 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -166,6 +166,9 @@ void screen_startup() void screen_shutdown() { guint i; + + PROP_ERASE(ob_root, openbox_pid); /* we're not running here no more! */ + for (i = 0; i < screen_desktop_names->len; ++i) g_free(g_ptr_array_index(screen_desktop_names, i)); g_ptr_array_free(screen_desktop_names, TRUE);