diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-07-13 21:10:52 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-07-14 08:34:22 +0200 |
commit | 4b7c522208deeb80b821a294e4e76e50c78304e7 (patch) | |
tree | a2bd4ac2a53c01fd626cb544e5c5bbcc92825372 /sw | |
parent | 85ff2eafc692f6f0d33ac611600935a96058f20a (diff) |
xmlsecurity pdf verify: push_back -> emplace_back
And a few other similar small cleanups.
Change-Id: I91c992f33f2166d1cf27cbc9def1b69965040658
Reviewed-on: https://gerrit.libreoffice.org/39928
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/rtfexportfilter.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/rtfexportfilter.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/rtfexportfilter.cxx b/sw/source/filter/ww8/rtfexportfilter.cxx index a88b17951836..226fc3667074 100644 --- a/sw/source/filter/ww8/rtfexportfilter.cxx +++ b/sw/source/filter/ww8/rtfexportfilter.cxx @@ -103,7 +103,7 @@ OUString RtfExport_getImplementationName() return OUString(IMPL_NAME_RTFEXPORT); } -uno::Sequence< OUString > SAL_CALL RtfExport_getSupportedServiceNames() throw() +uno::Sequence< OUString > SAL_CALL RtfExport_getSupportedServiceNames() noexcept { return uno::Sequence< OUString > { "com.sun.star.document.ExportFilter" }; } diff --git a/sw/source/filter/ww8/rtfexportfilter.hxx b/sw/source/filter/ww8/rtfexportfilter.hxx index 5b626344e900..38261b99685f 100644 --- a/sw/source/filter/ww8/rtfexportfilter.hxx +++ b/sw/source/filter/ww8/rtfexportfilter.hxx @@ -61,7 +61,7 @@ public: }; OUString RtfExport_getImplementationName(); -css::uno::Sequence<OUString> SAL_CALL RtfExport_getSupportedServiceNames() throw(); +css::uno::Sequence<OUString> SAL_CALL RtfExport_getSupportedServiceNames() noexcept; /// @throws css::uno::Exception css::uno::Reference<css::uno::XInterface> SAL_CALL RtfExport_createInstance(const css::uno::Reference<css::uno::XComponentContext>& xCtx); |