diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-03 18:11:39 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-03 18:11:39 +0000 |
| commit | 806a8c411f10c7a2292bfac15d77c8609f56ee71 (patch) | |
| tree | d56c0f2a4b05b00fef085ea69930603f10ee8f75 /openbox/client.c | |
| parent | 40902496a01b21b950f3672bf2ae9e100ba9b95c (diff) | |
add a reconfigure action, also reconfigure on SIGUSR2.
support reconfiguring throughout the entire codebase.
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index 999b23dd..0d08f0f4 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -51,12 +51,14 @@ static void client_restore_session_state(ObClient *self); static void client_restore_session_stacking(ObClient *self); static void client_urgent_notify(ObClient *self); -void client_startup() +void client_startup(gboolean reconfig) { + if (reconfig) return; + client_set_list(); } -void client_shutdown() +void client_shutdown(gboolean reconfig) { } |
