From d58f7b569e6c39fbeb96d55a139cd3a07ec3b5a7 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 12 May 2002 22:40:32 +0000 Subject: no more use of LinkedList in BaseDisplay --- src/BaseDisplay.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/BaseDisplay.h') diff --git a/src/BaseDisplay.h b/src/BaseDisplay.h index 9386a261..b30a7170 100644 --- a/src/BaseDisplay.h +++ b/src/BaseDisplay.h @@ -30,11 +30,11 @@ class BaseDisplay; class ScreenInfo; -#include "LinkedList.h" #include "Timer.h" #include "Geometry.h" #include "Util.h" #include +#include #define AttribShaded (1l << 0) #define AttribMaxHoriz (1l << 1) @@ -133,7 +133,8 @@ private: typedef std::vector ScreenInfoList; ScreenInfoList screenInfoList; - LinkedList *timerList; + typedef std::list TimerList; + TimerList timerList; char *display_name, *application_name; int number_of_screens, server_grabs, colors_per_channel; -- cgit v1.2.3