summaryrefslogtreecommitdiff
path: root/sw/inc/redline.hxx
diff options
context:
space:
mode:
authorNigel Hawkins <n.hawkins@gmx.com>2011-07-25 17:07:22 +0100
committerNigel Hawkins <n.hawkins@gmx.com>2011-07-25 17:07:22 +0100
commit3bbc37dc5494ef3e8e77d0b42f94995e8c69d556 (patch)
tree3b9c9281eece9449e999c4b72242819fc6e76d51 /sw/inc/redline.hxx
parentf7ee8949f23b5106efe16444040dfaa677ccbd26 (diff)
Replace SvUShorts with vector in redline.hxx and docredln.cxx
Diffstat (limited to 'sw/inc/redline.hxx')
-rw-r--r--sw/inc/redline.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx
index 5602d101ef62..2ca506b7c3e5 100644
--- a/sw/inc/redline.hxx
+++ b/sw/inc/redline.hxx
@@ -31,13 +31,12 @@
#include <tools/datetime.hxx>
#include <tools/string.hxx>
-#define _SVSTDARR_USHORTS
-#include <svl/svstdarr.hxx>
#include <pam.hxx>
#include <IDocumentRedlineAccess.hxx>
#include <svl/smplhint.hxx>
+#include <vector>
class SfxItemSet;
class SwView;
@@ -77,7 +76,7 @@ public:
class SwRedlineExtraData_Format : public SwRedlineExtraData
{
- SvUShorts aWhichIds;
+ std::vector<sal_uInt16> aWhichIds;
SwRedlineExtraData_Format( const SwRedlineExtraData_Format& rCpy );