add ob_main_loop_timeout_remove_data.
authorDana Jansens <danakj@orodu.net>
Wed, 3 Sep 2003 20:34:14 +0000 (20:34 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 3 Sep 2003 20:34:14 +0000 (20:34 +0000)
make the timeout remove functions remove *all* timeouts that match

openbox/mainloop.c
openbox/mainloop.h

index 9df84d3..397f8ae 100644 (file)
@@ -525,10 +525,21 @@ void ob_main_loop_timeout_remove(ObMainLoop *loop,
 
     for (it = loop->timers; it; it = g_slist_next(it)) {
         ObMainLoopTimer *t = it->data;
-        if (t->func == handler) {
+        if (t->func == handler)
+            t->del_me = TRUE;
+    }
+}
+
+void ob_main_loop_timeout_remove_data(ObMainLoop *loop,
+                                      GSourceFunc handler,
+                                      gpointer data)
+{
+    GSList *it;
+
+    for (it = loop->timers; it; it = g_slist_next(it)) {
+        ObMainLoopTimer *t = it->data;
+        if (t->func == handler && t->data == data)
             t->del_me = TRUE;
-            break;
-        }
     }
 }
 
index ecbcc38..8e0e5ed 100644 (file)
@@ -45,6 +45,9 @@ void ob_main_loop_timeout_add(ObMainLoop *loop,
                               GDestroyNotify notify);
 void ob_main_loop_timeout_remove(ObMainLoop *loop,
                                  GSourceFunc handler);
+void ob_main_loop_timeout_remove_data(ObMainLoop *loop,
+                                      GSourceFunc handler,
+                                      gpointer data);
 
 void ob_main_loop_run(ObMainLoop *loop);
 void ob_main_loop_exit(ObMainLoop *loop);