summaryrefslogtreecommitdiff
path: root/svx/inc
diff options
context:
space:
mode:
authornpcdoom <venccsralph@gmail.com>2011-02-27 22:22:17 -0430
committerLuboš Luňák <l.lunak@suse.cz>2011-03-04 12:10:56 +0100
commit60ad7f2628119a32d468d90173cc066c7bff817e (patch)
tree68d8527d09165921d5564b4b9ba0e636da634079 /svx/inc
parent3c43a5b32ff0a224b2a31917cfe636579872c129 (diff)
Remove deprecated List container in gallery1.
Signed-off-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'svx/inc')
-rw-r--r--svx/inc/svx/gallery1.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/svx/inc/svx/gallery1.hxx b/svx/inc/svx/gallery1.hxx
index 8f93dd009b..b0f3ee538f 100644
--- a/svx/inc/svx/gallery1.hxx
+++ b/svx/inc/svx/gallery1.hxx
@@ -31,12 +31,10 @@
#include <tools/string.hxx>
#include <tools/urlobj.hxx>
-#include <tools/list.hxx>
#include <svl/brdcst.hxx>
#include "svx/svxdllapi.h"
#include <cstdio>
-#include <list>
#include <vector>
// ---------------------
@@ -120,6 +118,7 @@ SvStream& operator>>( SvStream& rIn, GalleryImportThemeEntry& rEntry );
class SfxListener;
class GalleryTheme;
+class GalleryThemeCacheEntry;
class Gallery : public SfxBroadcaster
{
@@ -127,11 +126,13 @@ class Gallery : public SfxBroadcaster
friend Gallery* createGallery( const rtl::OUString& );
friend void disposeGallery( Gallery* );
+ typedef std::vector<GalleryThemeCacheEntry*> GalleryCacheThemeList;
+
private:
GalleryThemeList aThemeList;
GalleryImportThemeList aImportList;
- List aThemeCache;
+ GalleryCacheThemeList aThemeCache;
INetURLObject aRelURL;
INetURLObject aUserURL;
rtl_TextEncoding nReadTextEncoding;