diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-09-30 12:55:39 +0900 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-10-02 08:15:20 +0000 |
commit | 258f4ba9de5e40210f8a38817f89cf93ac25ebed (patch) | |
tree | 9e37b471b52e687942c9d6b87a2d8cd875dd8226 /sfx2/source/inc/splitwin.hxx | |
parent | 2267dbba29a261c2cff7e86215d3eab10b637b3d (diff) |
fdo#75757: remove inheritance to std::vector
from SfxDockArr_Impl, typedef'ing it as boost::ptr_vector<SfxDock_Impl>.
Change-Id: Ieb4f065a836cf9314464b9d5f53a09a95a974be8
Reviewed-on: https://gerrit.libreoffice.org/11707
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'sfx2/source/inc/splitwin.hxx')
-rw-r--r-- | sfx2/source/inc/splitwin.hxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sfx2/source/inc/splitwin.hxx b/sfx2/source/inc/splitwin.hxx index 76b690f332a4..05bbd61138a4 100644 --- a/sfx2/source/inc/splitwin.hxx +++ b/sfx2/source/inc/splitwin.hxx @@ -24,9 +24,18 @@ class SfxWorkWindow; class SfxDockingWindow; -class SfxDockArr_Impl; class SfxEmptySplitWin_Impl; -struct SfxDock_Impl; + +struct SfxDock_Impl +{ + sal_uInt16 nType; + SfxDockingWindow* pWin; // SplitWindow has this window + bool bNewLine; + bool bHide; // SplitWindow had this window + long nSize; +}; + +typedef boost::ptr_vector<SfxDock_Impl> SfxDockArr_Impl; class SfxSplitWindow : public SplitWindow { |