summaryrefslogtreecommitdiffstats
path: root/include/editeng/unonrule.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-12-22 10:50:40 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-12-25 21:55:39 +0100
commit76e950bfafd8b44ee47d7a9573df1571652c52e1 (patch)
tree35c6ea2a240ba08ccf2c4faaaaed18c088f75763 /include/editeng/unonrule.hxx
parentcoverity#1426922 Uninitialized scalar field (diff)
downloadcore-76e950bfafd8b44ee47d7a9573df1571652c52e1.tar.gz
core-76e950bfafd8b44ee47d7a9573df1571652c52e1.zip
various coverity exception warnings
Change-Id: I7b3588ad42e17f2f363b6a247e318f23c95e578e Reviewed-on: https://gerrit.libreoffice.org/46961 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/editeng/unonrule.hxx')
-rw-r--r--include/editeng/unonrule.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/editeng/unonrule.hxx b/include/editeng/unonrule.hxx
index 307c56deb5d0..bc750254ae67 100644
--- a/include/editeng/unonrule.hxx
+++ b/include/editeng/unonrule.hxx
@@ -31,8 +31,8 @@
#include <comphelper/servicehelper.hxx>
#include <com/sun/star/beans/PropertyValue.hpp>
-EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule( const SvxNumRule* pRule ) throw();
-EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule() throw();
+EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule(const SvxNumRule* pRule);
+EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule();
/// @throws css::lang::IllegalArgumentException
const SvxNumRule& SvxGetNumRule( css::uno::Reference< css::container::XIndexReplace > const & xRule );
EDITENG_DLLPUBLIC css::uno::Reference< css::ucb::XAnyCompare > SvxCreateNumRuleCompare() throw();
@@ -43,7 +43,7 @@ class SvxUnoNumberingRules : public ::cppu::WeakAggImplHelper5< css::container::
private:
SvxNumRule maRule;
public:
- SvxUnoNumberingRules( const SvxNumRule& rRule ) throw();
+ SvxUnoNumberingRules(const SvxNumRule& rRule);
virtual ~SvxUnoNumberingRules() throw() override;
UNO3_GETIMPLEMENTATION_DECL( SvxUnoNumberingRules )