]> Dogcows Code - chaz/openbox/commitdiff
don't set variables twice
authorDana Jansens <danakj@orodu.net>
Thu, 6 Mar 2008 07:44:58 +0000 (02:44 -0500)
committerDana Jansens <danakj@orodu.net>
Thu, 6 Mar 2008 07:44:58 +0000 (02:44 -0500)
openbox/client.c

index 0bb1d11d8a2702bebcff8f8dd850640a7b55194b..585379ec802399cf93561e24e414578ca0aa990e 100644 (file)
@@ -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));
This page took 0.025382 seconds and 4 git commands to generate.