[Scummvm-cvs-logs] scummvm master -> 2678bcda981d7772beece5eaae3293e3e0f1c2a8

lordhoto lordhoto at gmail.com
Tue Jul 3 17:59:17 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
2678bcda98 BACKENDS: Remove unused member in DefaultTimerManager.


Commit: 2678bcda981d7772beece5eaae3293e3e0f1c2a8
    https://github.com/scummvm/scummvm/commit/2678bcda981d7772beece5eaae3293e3e0f1c2a8
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2012-07-03T08:58:33-07:00

Commit Message:
BACKENDS: Remove unused member in DefaultTimerManager.

Thanks to salty-horse for pointing this out.

Changed paths:
    backends/timer/default/default-timer.cpp
    backends/timer/default/default-timer.h



diff --git a/backends/timer/default/default-timer.cpp b/backends/timer/default/default-timer.cpp
index 8681102..9cd803f 100644
--- a/backends/timer/default/default-timer.cpp
+++ b/backends/timer/default/default-timer.cpp
@@ -59,7 +59,6 @@ void insertPrioQueue(TimerSlot *head, TimerSlot *newSlot) {
 
 
 DefaultTimerManager::DefaultTimerManager() :
-	_timerHandler(0),
 	_head(0) {
 
 	_head = new TimerSlot();
diff --git a/backends/timer/default/default-timer.h b/backends/timer/default/default-timer.h
index e5a9dad..5884979 100644
--- a/backends/timer/default/default-timer.h
+++ b/backends/timer/default/default-timer.h
@@ -34,7 +34,6 @@ private:
 	typedef Common::HashMap<Common::String, TimerProc, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> TimerSlotMap;
 
 	Common::Mutex _mutex;
-	void *_timerHandler;
 	TimerSlot *_head;
 	TimerSlotMap _callbacks;
 






More information about the Scummvm-git-logs mailing list