[Libreoffice-commits] core.git: Branch 'private/swe/libreoffice-5-2+backports' - include/framework
Thorsten Behrens
Thorsten.Behrens at CIB.de
Fri Dec 1 02:23:30 UTC 2017
include/framework/preventduplicateinteraction.hxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit f80a0fdf62f4e23134c8eb2083d501aab68d5f5e
Author: Thorsten Behrens <Thorsten.Behrens at CIB.de>
Date: Fri Dec 1 03:22:37 2017 +0100
framework: build fix missing exception spec
Change-Id: Ide5ce873d4469c6dc5df83f1b9bf1a6e9b1f0aac
diff --git a/include/framework/preventduplicateinteraction.hxx b/include/framework/preventduplicateinteraction.hxx
index cd3d7438c785..00c76089da2a 100644
--- a/include/framework/preventduplicateinteraction.hxx
+++ b/include/framework/preventduplicateinteraction.hxx
@@ -82,19 +82,19 @@ private:
public:
using cppu::WeakComponentImplHelperBase::disposing;
- virtual void SAL_CALL disposing(const css::lang::EventObject&) override
+ virtual void SAL_CALL disposing(const css::lang::EventObject&) throw (::css::uno::RuntimeException, ::std::exception) override
{
}
// XTerminateListener
- virtual void SAL_CALL queryTermination(const css::lang::EventObject&) override
+ virtual void SAL_CALL queryTermination(const css::lang::EventObject&) throw (::css::frame::TerminationVetoException, ::css::uno::RuntimeException, ::std::exception) override
{
closewarningdialogs();
Application::PostUserEvent(LINK(this, WarningDialogsParent, TerminateDesktop));
throw css::frame::TerminationVetoException();
}
- virtual void SAL_CALL notifyTermination(const css::lang::EventObject&) override
+ virtual void SAL_CALL notifyTermination(const css::lang::EventObject&) throw (::css::uno::RuntimeException, ::std::exception) override
{
}
More information about the Libreoffice-commits
mailing list