summaryrefslogtreecommitdiff
path: root/filter/inc
diff options
context:
space:
mode:
Diffstat (limited to 'filter/inc')
-rw-r--r--filter/inc/filter/msfilter/svdfppt.hxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/filter/inc/filter/msfilter/svdfppt.hxx b/filter/inc/filter/msfilter/svdfppt.hxx
index c559a820ab14..4693ff617a21 100644
--- a/filter/inc/filter/msfilter/svdfppt.hxx
+++ b/filter/inc/filter/msfilter/svdfppt.hxx
@@ -33,7 +33,6 @@
#include <tools/string.hxx>
#include <tools/gen.hxx>
#include <tools/color.hxx>
-#include <tools/list.hxx>
#include <svx/svdobj.hxx>
#include <editeng/numitem.hxx>
#include <editeng/editdata.hxx>
@@ -1037,11 +1036,14 @@ struct StyleTextProp9
void Read( SvStream& rSt );
};
+typedef std::vector<PPTParaPropSet*> PPTParaPropSetList;
+typedef std::vector<PPTCharPropSet*> PPTCharPropSetList;
+
struct PPTStyleTextPropReader
{
- ::std::vector< sal_uInt32 > aSpecMarkerList; // hiword -> Flags, loword -> Position
- List aParaPropList;
- List aCharPropList;
+ std::vector< sal_uInt32 > aSpecMarkerList; // hiword -> Flags, loword -> Position
+ PPTParaPropSetList aParaPropList;
+ PPTCharPropSetList aCharPropList;
PPTStyleTextPropReader(
SvStream& rIn,
@@ -1160,6 +1162,7 @@ public:
);
PPTParagraphObj(
PPTStyleTextPropReader&,
+ sal_uInt32 nCurPos,
const PPTStyleSheet&,
sal_uInt32 nInstance,
PPTTextRulerInterpreter& rRuler