diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-03-06 02:44:58 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-03-06 02:44:58 -0500 |
| commit | ae0971659fdd41fc7e9ccb6ca2b2536f96c09061 (patch) | |
| tree | a5848624255d0c1b359247fed0faad889314bed5 | |
| parent | 07f5240d8c6d4fc6d70d396c4205a42f87ee7a95 (diff) | |
don't set variables twice
| -rw-r--r-- | openbox/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index 0bb1d11d..585379ec 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -494,8 +494,8 @@ void client_manage(Window window, ObPrompt *prompt) activate ? "yes" : "no"); if (activate) { gboolean raise = FALSE; - gboolean relative_focused = FALSE; - gboolean parent_focused = FALSE; + gboolean relative_focused; + gboolean parent_focused; parent_focused = (focus_client != NULL && client_search_focus_parent(self)); |
