]> Dogcows Code - chaz/openbox/blobdiff - openbox/mouse.c
ANSI function declarations, ie () -> (void)
[chaz/openbox] / openbox / mouse.c
index 97abf70840e10531dc8f064a73aee1e5d70ca145..66615585fec0323f6ea8b4dc02eec96a790eb6f4 100644 (file)
@@ -142,21 +142,21 @@ static void grab_all_clients(gboolean grab)
         mouse_grab_for_client(it->data, grab);
 }
 
-void mouse_unbind_all()
+void mouse_unbind_all(void)
 {
     gint i;
     GSList *it;
-    
+
     for(i = 0; i < OB_FRAME_NUM_CONTEXTS; ++i) {
         for (it = bound_contexts[i]; it; it = g_slist_next(it)) {
             ObMouseBinding *b = it->data;
             gint j;
 
             for (j = 0; j < OB_NUM_MOUSE_ACTIONS; ++j) {
-                GSList *it;
+                GSList *jt;
 
-                for (it = b->actions[j]; it; it = g_slist_next(it))
-                    actions_act_unref(it->data);
+                for (jt = b->actions[j]; jt; jt = g_slist_next(jt))
+                    actions_act_unref(jt->data);
                 g_slist_free(b->actions[j]);
             }
             g_free(b);
This page took 0.022322 seconds and 4 git commands to generate.