diff options
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/inc/linguistic/lngprophelp.hxx | 2 | ||||
-rw-r--r-- | linguistic/source/lngprophelp.cxx | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/linguistic/inc/linguistic/lngprophelp.hxx b/linguistic/inc/linguistic/lngprophelp.hxx index 1d2946d12c42..4dcb1aaff8c2 100644 --- a/linguistic/inc/linguistic/lngprophelp.hxx +++ b/linguistic/inc/linguistic/lngprophelp.hxx @@ -266,8 +266,10 @@ 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_Bool IsSpellUpperCase() const; sal_Bool IsSpellWithDigits() const; diff --git a/linguistic/source/lngprophelp.cxx b/linguistic/source/lngprophelp.cxx index 51d486650b70..41565a3f1886 100644 --- a/linguistic/source/lngprophelp.cxx +++ b/linguistic/source/lngprophelp.cxx @@ -806,11 +806,20 @@ 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 ); @@ -847,8 +856,6 @@ sal_Bool PropertyHelper_Spelling::removeLinguServiceEventListener( return pInst->removeLinguServiceEventListener( rxListener ); } - - } // namespace linguistic /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |