summaryrefslogtreecommitdiff
path: root/sw/inc/swtable.hxx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2015-09-28 11:50:20 +0200
committerJan Holesovsky <kendy@collabora.com>2015-09-28 14:09:15 +0200
commit48639c150fed12a0c8d520e1a8f084fadbedc4a6 (patch)
tree43f0a11561af948a3295637ae35a393c519344f5 /sw/inc/swtable.hxx
parent56341e5d496f576dc45fe8e6c44831d780fecb73 (diff)
sw table styles: Kill useless SwTableBox_Impl.
Change-Id: If987793fb113039e6a1e254592afa958761c68a0
Diffstat (limited to 'sw/inc/swtable.hxx')
-rw-r--r--sw/inc/swtable.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/sw/inc/swtable.hxx b/sw/inc/swtable.hxx
index 14e31c894a81..784b3981d8d3 100644
--- a/sw/inc/swtable.hxx
+++ b/sw/inc/swtable.hxx
@@ -54,7 +54,6 @@ class SfxPoolItem;
class SwUndoTableMerge;
class SwUndo;
class SwPaM;
-class SwTableBox_Impl;
class SwUndoTableCpyTable;
class SwBoxSelection;
struct SwSaveRowSpan;
@@ -395,7 +394,11 @@ class SW_DLLPUBLIC SwTableBox: public SwClient //Client of FrameFormat.
SwTableLines aLines;
const SwStartNode * pSttNd;
SwTableLine *pUpper;
- SwTableBox_Impl* pImpl;
+
+ std::unique_ptr<Color> mpUserColor;
+ std::unique_ptr<Color> mpNumFormatColor;
+ long mnRowSpan;
+ bool mbDummyFlag;
/// Do we contain any direct formatting?
bool mbDirectFormatting;
@@ -407,7 +410,7 @@ class SW_DLLPUBLIC SwTableBox: public SwClient //Client of FrameFormat.
public:
TYPEINFO_OVERRIDE();
- SwTableBox() : pSttNd(0), pUpper(0), pImpl(0), mbDirectFormatting(false) {}
+ SwTableBox();
SwTableBox( SwTableBoxFormat*, sal_uInt16 nLines, SwTableLine *pUp = 0 );
SwTableBox( SwTableBoxFormat*, const SwStartNode&, SwTableLine *pUp = 0 );