summaryrefslogtreecommitdiffstats
path: root/vcl/inc/unx/salbmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/unx/salbmp.h')
-rw-r--r--vcl/inc/unx/salbmp.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/vcl/inc/unx/salbmp.h b/vcl/inc/unx/salbmp.h
index 42230d8bbde7..0fa69ae5a72f 100644
--- a/vcl/inc/unx/salbmp.h
+++ b/vcl/inc/unx/salbmp.h
@@ -36,6 +36,7 @@
#include <unx/saldisp.hxx>
#include <salbmp.hxx>
#include <vclpluginapi.h>
+#include <list>
struct BitmapBuffer;
class BitmapPalette;
@@ -246,11 +247,14 @@ public:
// - ImplSalBitmapCache -
// ----------------------
+struct ImplBmpObj;
+
class ImplSalBitmapCache
{
private:
+ typedef ::std::list< ImplBmpObj* > BmpList_impl;
- List maBmpList;
+ BmpList_impl maBmpList;
sal_uIntPtr mnTotalSize;
public: