diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-07-26 23:33:12 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-07-26 23:38:45 +0200 |
commit | 0705460359f80e4474fbdcdef3c75bd246253c91 (patch) | |
tree | 0fd16a44c4095dbdad66c30df29e1cfb15e5ab49 /linguistic | |
parent | ba586696efc6b36cd56a3c086822933f1e16fb8f (diff) |
callcatcher: remove unused methods
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/inc/linguistic/lngprophelp.hxx | 3 | ||||
-rw-r--r-- | linguistic/source/lngprophelp.cxx | 14 |
2 files changed, 0 insertions, 17 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(); |