summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/UndoTable.hxx
diff options
context:
space:
mode:
authorNigel Hawkins <n.hawkins@gmx.com>2011-07-22 11:26:58 +0100
committerNigel Hawkins <n.hawkins@gmx.com>2011-07-22 15:11:01 +0100
commit6f1f0423eec115bf44ee06f59294b4b618c18bbe (patch)
tree9bb7d81b0ad29ae58aeb9b49e7fdc22475ecf264 /sw/source/core/inc/UndoTable.hxx
parent9298050e22cddecf42d5b541d92f5ded5ec7ba3c (diff)
Replace SvUShorts with vector in UndoTable.hxx and cascade changes.
LGPLv3+/MPL
Diffstat (limited to 'sw/source/core/inc/UndoTable.hxx')
-rw-r--r--sw/source/core/inc/UndoTable.hxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/sw/source/core/inc/UndoTable.hxx b/sw/source/core/inc/UndoTable.hxx
index be93d4af436c..a661bc201ab2 100644
--- a/sw/source/core/inc/UndoTable.hxx
+++ b/sw/source/core/inc/UndoTable.hxx
@@ -30,11 +30,6 @@
#include <undobj.hxx>
-#ifndef _SVSTDARR_HXX
-#define _SVSTDARR_USHORTS
-#include <svl/svstdarr.hxx>
-#endif
-
#include <vector>
#include <set>
#include <swtypes.hxx>
@@ -63,7 +58,7 @@ class SwUndoInsTbl : public SwUndo
String sTblNm;
SwInsertTableOptions aInsTblOpts;
SwDDEFieldType* pDDEFldType;
- SvUShorts* pColWidth;
+ std::vector<sal_uInt16> *pColWidth;
SwRedlineData* pRedlData;
SwTableAutoFmt* pAutoFmt;
sal_uLong nSttNode;
@@ -73,7 +68,7 @@ class SwUndoInsTbl : public SwUndo
public:
SwUndoInsTbl( const SwPosition&, sal_uInt16 nCols, sal_uInt16 nRows,
sal_uInt16 eAdjust, const SwInsertTableOptions& rInsTblOpts,
- const SwTableAutoFmt* pTAFmt, const SvUShorts* pColArr,
+ const SwTableAutoFmt* pTAFmt, const std::vector<sal_uInt16> *pColArr,
const String & rName);
virtual ~SwUndoInsTbl();