summaryrefslogtreecommitdiff
path: root/filter/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-09-05 21:38:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-09-05 22:57:12 +0200
commit138f02ac273d8a7217c51c800f18836041229b99 (patch)
treefa72bd0a9d00172c5d7b0e9f0534a5332399ecb5 /filter/source
parent085e8ebd769b430fbd7ac0614f292697d4b36103 (diff)
Drop unused ImplEESdrObject::ImplGetInt32PropertyValue overload
(This change is a prerequisite for making the OUString ctor taking a raw pointer explicit.) Change-Id: I7a61a709c3a4950d067ed600a7c0441afe51043f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102088 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'filter/source')
-rw-r--r--filter/source/msfilter/eschesdo.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/filter/source/msfilter/eschesdo.hxx b/filter/source/msfilter/eschesdo.hxx
index 3461a253c2f8..fc1522c79dca 100644
--- a/filter/source/msfilter/eschesdo.hxx
+++ b/filter/source/msfilter/eschesdo.hxx
@@ -53,10 +53,8 @@ public:
bool ImplGetPropertyValue( const OUString& rString );
- sal_Int32 ImplGetInt32PropertyValue( const sal_Unicode* pStr )
- { return ImplGetPropertyValue( pStr ) ? *o3tl::doAccess<sal_Int32>(mAny) : 0; }
sal_Int32 ImplGetInt32PropertyValue( const OUString& rStr )
- { return ImplGetInt32PropertyValue(rStr.getStr()); }
+ { return ImplGetPropertyValue( rStr ) ? *o3tl::doAccess<sal_Int32>(mAny) : 0; }
const css::uno::Reference< css::drawing::XShape >& GetShapeRef() const { return mXShape; }
const css::uno::Any& GetUsrAny() const { return mAny; }