oox/source/crypto/DocumentDecryption.cxx |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 7ee7a126edf2a4643eb049c4bace2f9ec6b4c373
Author: Tomaž Vajngerl <qui...@gmail.com>
Date:   Sat Aug 24 23:28:44 2013 +0200

    and also add SAL_CALL to AgileTokenHandler
    
    Change-Id: I9b88fe7c932ba2d1b94eeeff7d35b1d011117316

diff --git a/oox/source/crypto/DocumentDecryption.cxx 
b/oox/source/crypto/DocumentDecryption.cxx
index 7514ede..5bd5b1a 100644
--- a/oox/source/crypto/DocumentDecryption.cxx
+++ b/oox/source/crypto/DocumentDecryption.cxx
@@ -84,11 +84,11 @@ public:
     void SAL_CALL setDocumentLocator( const Reference< XLocator >& 
/*xLocator*/ )
         throw (RuntimeException, SAXException)
     {}
-    void startFastElement( sal_Int32 /*Element*/, const Reference< 
XFastAttributeList >& /*Attribs*/ )
+    void SAL_CALL startFastElement( sal_Int32 /*Element*/, const Reference< 
XFastAttributeList >& /*Attribs*/ )
         throw (RuntimeException, SAXException)
     {}
 
-    void startUnknownElement( const OUString& /*aNamespace*/, const OUString& 
aName, const Reference< XFastAttributeList >& aAttributeList )
+    void SAL_CALL startUnknownElement( const OUString& /*aNamespace*/, const 
OUString& aName, const Reference< XFastAttributeList >& aAttributeList )
         throw (RuntimeException, SAXException)
     {
         if(aName == "keyData")
@@ -170,26 +170,26 @@ public:
         }
     }
 
-    void endFastElement( sal_Int32 /*aElement*/ )
+    void SAL_CALL endFastElement( sal_Int32 /*aElement*/ )
         throw (RuntimeException, SAXException)
     {}
-    void endUnknownElement( const OUString& /*aNamespace*/, const OUString& 
/*aName*/ )
+    void SAL_CALL endUnknownElement( const OUString& /*aNamespace*/, const 
OUString& /*aName*/ )
         throw (RuntimeException, SAXException)
     {}
 
-    Reference< XFastContextHandler > createFastChildContext( sal_Int32 
/*aElement*/, const Reference< XFastAttributeList >& /*aAttribs*/ )
+    Reference< XFastContextHandler > SAL_CALL createFastChildContext( 
sal_Int32 /*aElement*/, const Reference< XFastAttributeList >& /*aAttribs*/ )
         throw (RuntimeException, SAXException)
     {
         return NULL;
     }
 
-    Reference< XFastContextHandler > createUnknownChildContext( const 
OUString& /*aNamespace*/, const OUString& /*aName*/, const Reference< 
XFastAttributeList >& /*aAttribs*/ )
+    Reference< XFastContextHandler > SAL_CALL createUnknownChildContext( const 
OUString& /*aNamespace*/, const OUString& /*aName*/, const Reference< 
XFastAttributeList >& /*aAttribs*/ )
         throw (RuntimeException, SAXException)
     {
         return this;
     }
 
-    void characters( const OUString& /*aChars*/ )
+    void SAL_CALL characters( const OUString& /*aChars*/ )
         throw (RuntimeException, SAXException)
     {}
 };
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to