diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-27 22:20:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-28 09:20:32 +0100 |
commit | 19bf1de0d4d1800b51485b4d33dc27a78854d521 (patch) | |
tree | 44e61f5e26285e131729c165c89399725453fdc9 /svx | |
parent | 865ef9c4488ed02941526e5f6d1e17a76c73bbbe (diff) |
callcatcher: unused code
Diffstat (limited to 'svx')
-rw-r--r-- | svx/inc/svx/fmmodel.hxx | 1 | ||||
-rw-r--r-- | svx/source/form/fmmodel.cxx | 19 |
2 files changed, 0 insertions, 20 deletions
diff --git a/svx/inc/svx/fmmodel.hxx b/svx/inc/svx/fmmodel.hxx index 8f9ee82a04d6..12e7d3e87de2 100644 --- a/svx/inc/svx/fmmodel.hxx +++ b/svx/inc/svx/fmmodel.hxx @@ -61,7 +61,6 @@ public: FmFormModel(SfxItemPool* pPool=NULL, SfxObjectShell* pPers=NULL ); FmFormModel(const XubString& rPath, SfxItemPool* pPool=NULL, SfxObjectShell* pPers=NULL ); - FmFormModel(SfxItemPool* pPool, SfxObjectShell* pPers, bool bUseExtColorTable); FmFormModel(const XubString& rPath, SfxItemPool* pPool, SfxObjectShell* pPers, bool bUseExtColorTable); diff --git a/svx/source/form/fmmodel.cxx b/svx/source/form/fmmodel.cxx index 217e61f1df78..6c2a87258d0a 100644 --- a/svx/source/form/fmmodel.cxx +++ b/svx/source/form/fmmodel.cxx @@ -104,25 +104,6 @@ FmFormModel::FmFormModel(const XubString& rPath, SfxItemPool* pPool, SfxObjectSh |* Ctor |* \************************************************************************/ -FmFormModel::FmFormModel(SfxItemPool* pPool, SfxObjectShell* pPers, - bool bUseExtColorTable - ) - :SdrModel(pPool, pPers, bUseExtColorTable, LOADREFCOUNTS) - ,m_pImpl(NULL) - ,m_pObjShell(0) - ,m_bOpenInDesignMode(sal_False) - ,m_bAutoControlFocus(sal_False) -{ - m_pImpl = new FmFormModelImplData; - m_pImpl->pUndoEnv = new FmXUndoEnvironment(*this); - m_pImpl->pUndoEnv->acquire(); -} - -/************************************************************************* -|* -|* Ctor -|* -\************************************************************************/ FmFormModel::FmFormModel(const XubString& rPath, SfxItemPool* pPool, SfxObjectShell* pPers, bool bUseExtColorTable) :SdrModel(rPath, pPool, pPers, bUseExtColorTable, LOADREFCOUNTS) |