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

Miklos Vajna vmiklos at collabora.co.uk
Fri Jul 28 07:09:13 UTC 2017


 sfx2/source/view/classificationhelper.cxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 7c77433439d61f702d613bc67ad7bd8ef5958e63
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Thu Jul 27 22:44:31 2017 +0200

    sfx2: fix inconsistent param naming in interface/implementation
    
    Change-Id: I8180082a96679ab2398789045882696f0e553d2c
    Reviewed-on: https://gerrit.libreoffice.org/40507
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/sfx2/source/view/classificationhelper.cxx b/sfx2/source/view/classificationhelper.cxx
index 497b4c2ba4f8..2fc02c79b80b 100644
--- a/sfx2/source/view/classificationhelper.cxx
+++ b/sfx2/source/view/classificationhelper.cxx
@@ -123,15 +123,15 @@ public:
 
     void SAL_CALL endDocument() override;
 
-    void SAL_CALL startElement(const OUString& aName, const uno::Reference<xml::sax::XAttributeList>& xAttribs) override;
+    void SAL_CALL startElement(const OUString& rName, const uno::Reference<xml::sax::XAttributeList>& xAttribs) override;
 
-    void SAL_CALL endElement(const OUString& aName) override;
+    void SAL_CALL endElement(const OUString& rName) override;
 
-    void SAL_CALL characters(const OUString& aChars) override;
+    void SAL_CALL characters(const OUString& rChars) override;
 
-    void SAL_CALL ignorableWhitespace(const OUString& aWhitespaces) override;
+    void SAL_CALL ignorableWhitespace(const OUString& rWhitespaces) override;
 
-    void SAL_CALL processingInstruction(const OUString& aTarget, const OUString& aData) override;
+    void SAL_CALL processingInstruction(const OUString& rTarget, const OUString& rData) override;
 
     void SAL_CALL setDocumentLocator(const uno::Reference<xml::sax::XLocator>& xLocator) override;
 };


More information about the Libreoffice-commits mailing list