summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-26 23:33:12 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-26 23:38:45 +0200
commita2644343c0f9730c607f86471412ae2bd92649f1 (patch)
tree07aba07664592b0d409036e087c7c8ade6b772c1 /sfx2
parent0be97371948953e83179f4b2f0d43880b3a07e35 (diff)
callcatcher: remove unused methods
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/new.cxx7
-rw-r--r--sfx2/source/inc/preview.hxx3
2 files changed, 0 insertions, 10 deletions
diff --git a/sfx2/source/doc/new.cxx b/sfx2/source/doc/new.cxx
index f487e6699a..611d20c779 100644
--- a/sfx2/source/doc/new.cxx
+++ b/sfx2/source/doc/new.cxx
@@ -88,13 +88,6 @@ SfxPreviewBase_Impl::SfxPreviewBase_Impl(
{
}
-SfxPreviewBase_Impl::SfxPreviewBase_Impl( Window* pParent )
- : Window(pParent, 0 ), pMetaFile()
-{
- Resize();
- Show();
-}
-
SfxPreviewBase_Impl::~SfxPreviewBase_Impl()
{
}
diff --git a/sfx2/source/inc/preview.hxx b/sfx2/source/inc/preview.hxx
index 037bdd072a..520854335b 100644
--- a/sfx2/source/inc/preview.hxx
+++ b/sfx2/source/inc/preview.hxx
@@ -45,7 +45,6 @@ protected:
public:
SfxPreviewBase_Impl( Window* pParent,
const ResId& rResId );
- SfxPreviewBase_Impl( Window* pParent );
~SfxPreviewBase_Impl( );
void SetObjectShell( SfxObjectShell* pObj );
virtual void Resize();
@@ -61,8 +60,6 @@ public:
SfxPreviewWin_Impl( Window* pParent,
const ResId& rResId )
: SfxPreviewBase_Impl( pParent, rResId ){};
- SfxPreviewWin_Impl( Window* pParent )
- : SfxPreviewBase_Impl( pParent ){};
static void ImpPaint(
const Rectangle& rRect, GDIMetaFile* pFile, Window* pWindow );
};