diff options
Diffstat (limited to 'svx/source/dialog/crashreportui.cxx')
-rw-r--r-- | svx/source/dialog/crashreportui.cxx | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/svx/source/dialog/crashreportui.cxx b/svx/source/dialog/crashreportui.cxx index 62e5edd80efd..a589fa09a456 100644 --- a/svx/source/dialog/crashreportui.cxx +++ b/svx/source/dialog/crashreportui.cxx @@ -28,19 +28,15 @@ public: // css.lang.XServiceInfo - virtual OUString SAL_CALL getImplementationName() - throw(css::uno::RuntimeException, std::exception) override; + virtual OUString SAL_CALL getImplementationName() override; - virtual sal_Bool SAL_CALL supportsService(const OUString& sServiceName) - throw(css::uno::RuntimeException, std::exception) override; + virtual sal_Bool SAL_CALL supportsService(const OUString& sServiceName) override; - virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() - throw(css::uno::RuntimeException, std::exception) override; + virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; virtual css::uno::Any SAL_CALL dispatchWithReturnValue(const css::util::URL& aURL, - const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) - throw(css::uno::RuntimeException, std::exception) override; + const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) override; private: css::uno::Reference< css::uno::XComponentContext > mxContext; @@ -53,19 +49,16 @@ CrashReportUI::CrashReportUI(const css::uno::Reference<css::uno::XComponentConte } OUString SAL_CALL CrashReportUI::getImplementationName() - throw(css::uno::RuntimeException, std::exception) { return OUString("com.sun.star.comp.svx.CrashReportUI"); } sal_Bool SAL_CALL CrashReportUI::supportsService(const OUString& sServiceName) - throw(css::uno::RuntimeException, std::exception) { return cppu::supportsService(this, sServiceName); } css::uno::Sequence< OUString > SAL_CALL CrashReportUI::getSupportedServiceNames() - throw(css::uno::RuntimeException, std::exception) { css::uno::Sequence< OUString > lServiceNames { "com.sun.star.dialog.CrashReportUI" }; return lServiceNames; @@ -73,7 +66,6 @@ css::uno::Sequence< OUString > SAL_CALL CrashReportUI::getSupportedServiceNames( css::uno::Any SAL_CALL CrashReportUI::dispatchWithReturnValue(const css::util::URL&, const css::uno::Sequence< css::beans::PropertyValue >& ) - throw(css::uno::RuntimeException, std::exception) { SolarMutexGuard aGuard; css::uno::Any aRet; |