]> Dogcows Code - chaz/openbox/blobdiff - otk/timerqueuemanager.cc
hopefully caught stupid assert
[chaz/openbox] / otk / timerqueuemanager.cc
index 5bd906c58516f3047848acb6aeef0a773e7da906..846648d32d88876dc19118a564e51a55277a2d0c 100644 (file)
@@ -23,7 +23,7 @@ void OBTimerQueueManager::fire()
     const OBTimer* const timer = timerList.top();
 
     gettimeofday(&now, 0);
-    tm = timer->timeRemaining(now);
+    tm = timer->remainingTime(now);
 
     timeout = &tm;
   }
@@ -44,8 +44,8 @@ void OBTimerQueueManager::fire()
 
     timerList.pop();
 
-    timer->fireTimeout();
-    if (timer->isRecurring())
+    timer->fire();
+    if (timer->recurring())
       timer->start();
   }
 }
This page took 0.025474 seconds and 4 git commands to generate.