summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-11-20 21:52:46 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-11-20 22:47:23 -0500
commit5314ece79ef8abd7d48b9e030d0a73ffac782da1 (patch)
treedcc913e270654806e5cabc6dc5ee0e58e3573096 /sfx2
parent01e14bd403e749116844b6ab0b0a7afc66347e90 (diff)
Make the ctor and dtor bodies non-inline.
Change-Id: Ie36e3dfa808aec96c080f981a5ad9f09a0720c2c
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/childwin.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/sfx2/source/appl/childwin.cxx b/sfx2/source/appl/childwin.cxx
index 66d2bb39a53c..d4821d2d92e2 100644
--- a/sfx2/source/appl/childwin.cxx
+++ b/sfx2/source/appl/childwin.cxx
@@ -40,6 +40,19 @@
static const sal_uInt16 nVersion = 2;
+SfxChildWinFactory::SfxChildWinFactory( SfxChildWinCtor pTheCtor, sal_uInt16 nID,
+ sal_uInt16 n )
+ : pCtor(pTheCtor)
+ , nId( nID )
+ , nPos(n)
+ , pArr( NULL )
+{}
+
+SfxChildWinFactory::~SfxChildWinFactory()
+{
+ delete pArr;
+}
+
struct SfxChildWindow_Impl
{
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > xFrame;