[ooo-build-commit] patches/dev300 patches/vba

Noel Power noelp at kemper.freedesktop.org
Tue Jun 2 08:42:14 PDT 2009


 patches/dev300/oox-smartart-import.diff |    2 +-
 patches/vba/vba-fixup-macrosearch.diff  |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 17d252a0a9976eddfedf83f4bfc9a861c7337c33
Author: Noel Power <noel.power at novell.com>
Date:   Tue Jun 2 16:41:01 2009 +0100

    add missing SAL_CALL calling convention ( fix windows build errors )
    
    * patches/dev300/oox-smartart-import.diff:
    * patches/vba/vba-fixup-macrosearch.diff:

diff --git a/patches/dev300/oox-smartart-import.diff b/patches/dev300/oox-smartart-import.diff
index 495582f..b52b60e 100644
--- a/patches/dev300/oox-smartart-import.diff
+++ b/patches/dev300/oox-smartart-import.diff
@@ -973,7 +973,7 @@ index 0000000..840075a
 +public:
 +    Scene3DPropertiesContext( ::oox::core::ContextHandler& rParent, Shape3DProperties& r3DProperties ) throw();
 +
-+    ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs )
++    ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs )
 +			throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException );
 +
 +private:
diff --git a/patches/vba/vba-fixup-macrosearch.diff b/patches/vba/vba-fixup-macrosearch.diff
index deba06e..58b9259 100644
--- a/patches/vba/vba-fixup-macrosearch.diff
+++ b/patches/vba/vba-fixup-macrosearch.diff
@@ -920,7 +920,7 @@ index 54797da..e3cded8 100644
 +        return aElements;
 +    }
 +
-+    virtual void insertByName( const rtl::OUString& aName, const uno::Any& aElement ) throw ( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::ElementExistException, com::sun::star::lang::WrappedTargetException )
++    virtual void SAL_CALL insertByName( const rtl::OUString& aName, const uno::Any& aElement ) throw ( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::ElementExistException, com::sun::star::lang::WrappedTargetException )
 +    {
 +        
 +        rtl::OUString sProjectName;
@@ -931,13 +931,13 @@ index 54797da..e3cded8 100644
 +        mTemplateToProject[ aName ] = sProjectName;
 +    }
 +
-+    virtual void removeByName( const rtl::OUString& Name ) throw ( com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException )
++    virtual void SAL_CALL removeByName( const rtl::OUString& Name ) throw ( com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException )
 +    {
 +        if ( !hasByName( Name ) )
 +            throw container::NoSuchElementException();
 +        mTemplateToProject.erase( Name );
 +    }
-+    virtual void replaceByName( const rtl::OUString& aName, const uno::Any& aElement ) throw ( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException )
++    virtual void SAL_CALL replaceByName( const rtl::OUString& aName, const uno::Any& aElement ) throw ( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException )
 +    {
 +        if ( !hasByName( aName ) )
 +            throw container::NoSuchElementException();


More information about the ooo-build-commit mailing list