diff options
-rw-r--r-- | linguistic/inc/linguistic/lngprophelp.hxx | 3 | ||||
-rw-r--r-- | linguistic/source/lngprophelp.cxx | 14 | ||||
-rw-r--r-- | sfx2/source/doc/new.cxx | 7 | ||||
-rw-r--r-- | sfx2/source/inc/preview.hxx | 3 |
4 files changed, 0 insertions, 27 deletions
diff --git a/linguistic/inc/linguistic/lngprophelp.hxx b/linguistic/inc/linguistic/lngprophelp.hxx index 18528eb465b0..1d2946d12c42 100644 --- a/linguistic/inc/linguistic/lngprophelp.hxx +++ b/linguistic/inc/linguistic/lngprophelp.hxx @@ -266,12 +266,9 @@ public: ::com::sun::star::uno::XInterface > &rxSource, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > &rxPropSet ); - ~PropertyHelper_Spelling(); void AddAsPropListener(); - void RemoveAsPropListener(); void SetTmpPropVals( const com::sun::star::beans::PropertyValues &rPropVals ); - sal_Int16 GetMaxNumberOfSuggestions() const; sal_Bool IsSpellUpperCase() const; sal_Bool IsSpellWithDigits() const; sal_Bool IsSpellCapitalization() const; diff --git a/linguistic/source/lngprophelp.cxx b/linguistic/source/lngprophelp.cxx index ef5a910e0867..ee96c673ea26 100644 --- a/linguistic/source/lngprophelp.cxx +++ b/linguistic/source/lngprophelp.cxx @@ -806,30 +806,16 @@ PropertyHelper_Spelling::PropertyHelper_Spelling( xPropHelper = pInst; } -PropertyHelper_Spelling::~PropertyHelper_Spelling() -{ -} - void PropertyHelper_Spelling::AddAsPropListener() { pInst->AddAsPropListener(); } -void PropertyHelper_Spelling::RemoveAsPropListener() -{ - pInst->RemoveAsPropListener(); -} - void PropertyHelper_Spelling::SetTmpPropVals( const com::sun::star::beans::PropertyValues &rPropVals ) { pInst->SetTmpPropVals( rPropVals ); } -sal_Int16 PropertyHelper_Spelling::GetMaxNumberOfSuggestions() const -{ - return pInst->GetMaxNumberOfSuggestions(); -} - sal_Bool PropertyHelper_Spelling::IsSpellUpperCase() const { return pInst->IsSpellUpperCase(); diff --git a/sfx2/source/doc/new.cxx b/sfx2/source/doc/new.cxx index 743fe48e65cf..9a2dbb7189e5 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 35b7d2c98b3e..674a8826b7cd 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 ); }; |