[Libreoffice-commits] core.git: filter/source

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Sat Sep 5 20:57:49 UTC 2020


 filter/source/msfilter/eschesdo.hxx |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 138f02ac273d8a7217c51c800f18836041229b99
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Sat Sep 5 21:38:37 2020 +0200
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Sat Sep 5 22:57:12 2020 +0200

    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 at redhat.com>

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; }


More information about the Libreoffice-commits mailing list