summaryrefslogtreecommitdiffstats
path: root/sw/inc/txatritr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-25 15:05:31 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-04 23:23:20 +0200
commit6485258bc00de0bc1db9a0b146437a08c93970aa (patch)
treef2fcd1caa4c5e424b940ba58c2bccdfc5e6725b5 /sw/inc/txatritr.hxx
parentConvert Svptrarr to std::vector<SvGlobalName*> (diff)
downloadcore-6485258bc00de0bc1db9a0b146437a08c93970aa.tar.gz
core-6485258bc00de0bc1db9a0b146437a08c93970aa.zip
Convert Svptrarr to std::deque<const SwTxtAttr*>
Change-Id: I527814582214401a1f7dd9c192e6aa96e45f7819
Diffstat (limited to 'sw/inc/txatritr.hxx')
-rw-r--r--sw/inc/txatritr.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/txatritr.hxx b/sw/inc/txatritr.hxx
index 63c2020df659..fd2c2fec1d4b 100644
--- a/sw/inc/txatritr.hxx
+++ b/sw/inc/txatritr.hxx
@@ -21,9 +21,9 @@
#include <tools/solar.h>
#include <sal/types.h>
-#include <svl/svarray.hxx>
#include <editeng/langitem.hxx>
#include <hintids.hxx>
+#include <deque>
class String;
class SwTxtNode;
@@ -53,7 +53,7 @@ public:
class SwTxtAttrIterator
{
SwScriptIterator aSIter;
- SvPtrarr aStack;
+ std::deque<const SwTxtAttr*> aStack;
const SwTxtNode& rTxtNd;
const SfxPoolItem *pParaItem, *pCurItem;
xub_StrLen nChgPos;