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

Matúš Kukan matus.kukan at collabora.com
Fri Oct 31 03:07:03 PDT 2014


 editeng/source/misc/SvXMLAutoCorrectImport.cxx |    4 ++--
 editeng/source/misc/SvXMLAutoCorrectImport.hxx |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit f13678d8055d77f891b258f6e2a27aac2c0f07e7
Author: Matúš Kukan <matus.kukan at collabora.com>
Date:   Fri Oct 31 11:10:39 2014 +0100

    missing SAL_CALL
    
    Change-Id: Ifa9034f12f42c0ddc5aa5e363fbcc04bab36492b

diff --git a/editeng/source/misc/SvXMLAutoCorrectImport.cxx b/editeng/source/misc/SvXMLAutoCorrectImport.cxx
index f2b3109..8f2f69e 100644
--- a/editeng/source/misc/SvXMLAutoCorrectImport.cxx
+++ b/editeng/source/misc/SvXMLAutoCorrectImport.cxx
@@ -58,7 +58,7 @@ SvXMLWordListContext::SvXMLWordListContext(
 {
 }
 
-com::sun::star::uno::Reference<XFastContextHandler> SvXMLWordListContext::createFastChildContext(
+com::sun::star::uno::Reference<XFastContextHandler> SAL_CALL SvXMLWordListContext::createFastChildContext(
     sal_Int32 Element, const uno::Reference< xml::sax::XFastAttributeList > & xAttrList )
 throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception)
 {
@@ -139,7 +139,7 @@ SvXMLExceptionListContext::SvXMLExceptionListContext(
 {
 }
 
-com::sun::star::uno::Reference<xml::sax::XFastContextHandler> SvXMLExceptionListContext::createFastChildContext(
+com::sun::star::uno::Reference<xml::sax::XFastContextHandler> SAL_CALL SvXMLExceptionListContext::createFastChildContext(
     sal_Int32 Element, const uno::Reference< xml::sax::XFastAttributeList > & xAttrList )
     throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception)
 {
diff --git a/editeng/source/misc/SvXMLAutoCorrectImport.hxx b/editeng/source/misc/SvXMLAutoCorrectImport.hxx
index 4901958..96df12d 100644
--- a/editeng/source/misc/SvXMLAutoCorrectImport.hxx
+++ b/editeng/source/misc/SvXMLAutoCorrectImport.hxx
@@ -55,7 +55,7 @@ public:
     SvXMLWordListContext ( SvXMLAutoCorrectImport& rImport, sal_Int32 Element,
         const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList );
 
-    virtual com::sun::star::uno::Reference<XFastContextHandler> createFastChildContext( sal_Int32 Element,
+    virtual com::sun::star::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext( sal_Int32 Element,
         const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList )
         throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) SAL_OVERRIDE;
 
@@ -100,7 +100,7 @@ public:
     SvXMLExceptionListContext ( SvXMLExceptionListImport& rImport, sal_Int32 Element,
         const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList );
 
-    virtual com::sun::star::uno::Reference<XFastContextHandler> createFastChildContext( sal_Int32 Element,
+    virtual com::sun::star::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext( sal_Int32 Element,
         const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > & xAttrList )
         throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) SAL_OVERRIDE;
 


More information about the Libreoffice-commits mailing list