summaryrefslogtreecommitdiff
path: root/src/Image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Image.h')
-rw-r--r--src/Image.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Image.h b/src/Image.h
index b21535bc..5a542c16 100644
--- a/src/Image.h
+++ b/src/Image.h
@@ -26,8 +26,8 @@
#include <X11/Xlib.h>
#include <X11/Xutil.h>
-#include "LinkedList.h"
#include "Timer.h"
+#include <list>
class ScreenInfo;
class BImage;
@@ -186,7 +186,8 @@ private:
unsigned long pixel1, pixel2, texture;
} Cache;
- LinkedList<Cache> *cache;
+ typedef std::list<Cache*> CacheList;
+ CacheList cache;
protected: