Kaydet (Commit) fc3044ce authored tarafından Jan-Marek Glogowski's avatar Jan-Marek Glogowski Kaydeden (comit) Michael Stahl

ucb: GCC 4.6 also doesn't do "override"

But you can use SAL_OVERRIDE instead.

Change-Id: Id593aa5f734b291043dee58f0e5ac6ff8ee421ea
Reviewed-on: https://gerrit.libreoffice.org/19653Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst b4326c93
...@@ -47,15 +47,15 @@ public: ...@@ -47,15 +47,15 @@ public:
private: private:
OUString SAL_CALL getImplementationName() OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return OUString("com.sun.star.comp.ucb.ImageContentProvider"); } { return OUString("com.sun.star.comp.ucb.ImageContentProvider"); }
sal_Bool SAL_CALL supportsService(OUString const & ServiceName) sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return cppu::supportsService(this, ServiceName); } { return cppu::supportsService(this, ServiceName); }
css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ {
return css::uno::Sequence<OUString>{ return css::uno::Sequence<OUString>{
"com.sun.star.ucb.ImageContentProvider"}; "com.sun.star.ucb.ImageContentProvider"};
...@@ -66,7 +66,7 @@ private: ...@@ -66,7 +66,7 @@ private:
throw ( throw (
css::ucb::IllegalIdentifierException, css::uno::RuntimeException, css::ucb::IllegalIdentifierException, css::uno::RuntimeException,
std::exception) std::exception)
override SAL_OVERRIDE
{ {
css::uno::Reference<css::uno::XComponentContext> context; css::uno::Reference<css::uno::XComponentContext> context;
{ {
...@@ -146,13 +146,13 @@ private: ...@@ -146,13 +146,13 @@ private:
sal_Int32 SAL_CALL compareContentIds( sal_Int32 SAL_CALL compareContentIds(
css::uno::Reference<css::ucb::XContentIdentifier> const & Id1, css::uno::Reference<css::ucb::XContentIdentifier> const & Id1,
css::uno::Reference<css::ucb::XContentIdentifier> const & Id2) css::uno::Reference<css::ucb::XContentIdentifier> const & Id2)
throw (css::uno::RuntimeException, std::exception) override throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ {
return Id1->getContentIdentifier().compareTo( return Id1->getContentIdentifier().compareTo(
Id2->getContentIdentifier()); Id2->getContentIdentifier());
} }
void SAL_CALL disposing() override { void SAL_CALL disposing() SAL_OVERRIDE {
context_.clear(); context_.clear();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment