[Libreoffice-commits] .: Branch 'libreoffice-3-4' - sc/source
Fridrich Strba
fridrich at kemper.freedesktop.org
Tue Apr 12 02:39:53 PDT 2011
sc/source/ui/vba/vbaworkbook.hxx | 2 +-
sc/source/ui/vba/vbaworksheet.hxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 42130baccdff9f114ef89c736d098214557ea72e
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Tue Apr 12 11:39:23 2011 +0200
fix a mixup with calling conventions
diff --git a/sc/source/ui/vba/vbaworkbook.hxx b/sc/source/ui/vba/vbaworkbook.hxx
index 5b98702..c3e4c18 100644
--- a/sc/source/ui/vba/vbaworkbook.hxx
+++ b/sc/source/ui/vba/vbaworkbook.hxx
@@ -86,7 +86,7 @@ public:
virtual css::uno::Reference< css::frame::XModel > getDocModel() { return mxModel; }
// XUnoTunnel
- virtual ::sal_Int64 getSomething(const css::uno::Sequence<sal_Int8 >& rId ) throw(css::uno::RuntimeException);
+ virtual ::sal_Int64 SAL_CALL getSomething(const css::uno::Sequence<sal_Int8 >& rId ) throw(css::uno::RuntimeException);
};
#endif /* SC_VBA_WORKBOOK_HXX */
diff --git a/sc/source/ui/vba/vbaworksheet.hxx b/sc/source/ui/vba/vbaworksheet.hxx
index 1172d39..b852b60 100644
--- a/sc/source/ui/vba/vbaworksheet.hxx
+++ b/sc/source/ui/vba/vbaworksheet.hxx
@@ -173,7 +173,7 @@ public:
virtual rtl::OUString& getServiceImplName();
virtual css::uno::Sequence<rtl::OUString> getServiceNames();
// XUnoTunnel
- virtual ::sal_Int64 getSomething(const css::uno::Sequence<sal_Int8 >& rId ) throw(css::uno::RuntimeException);
+ virtual ::sal_Int64 SAL_CALL getSomething(const css::uno::Sequence<sal_Int8 >& rId ) throw(css::uno::RuntimeException);
};
#endif /* SC_VBA_WORKSHEET_HXX */
More information about the Libreoffice-commits
mailing list