]> Dogcows Code - chaz/openbox/blobdiff - src/BaseDisplay.h
no more use of LinkedList in BaseDisplay
[chaz/openbox] / src / BaseDisplay.h
index 9386a261413847edb69354aac5951ecf9daf4148..b30a71700cc1a076bbf827fe9b7fd53395122a11 100644 (file)
 class BaseDisplay;
 class ScreenInfo;
 
-#include "LinkedList.h"
 #include "Timer.h"
 #include "Geometry.h"
 #include "Util.h"
 #include <vector>
+#include <list>
 
 #define AttribShaded      (1l << 0)
 #define AttribMaxHoriz    (1l << 1)
@@ -133,7 +133,8 @@ private:
   typedef std::vector<ScreenInfo*> ScreenInfoList;
   ScreenInfoList screenInfoList;
  
-  LinkedList<BTimer> *timerList;
+  typedef std::list<BTimer*> TimerList;
+  TimerList timerList;
 
   char *display_name, *application_name;
   int number_of_screens, server_grabs, colors_per_channel;
This page took 0.022004 seconds and 4 git commands to generate.