diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-08 15:08:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-08 17:50:41 +0200 |
commit | 9db52c294f37c9404e846a1c0bd1741f142f5708 (patch) | |
tree | a5b0b3073a7198ec5512393f6d940794686912c9 /extensions/source | |
parent | 2bbcdc574ee2ca5849d7ab52963e89d810633cac (diff) |
clan-tidy bugprone-throw-keyword-missing in SubmissionPropertyHandler
warning: suspicious exception object created but not thrown; did you
mean 'throw IllegalArgumentException'?
looks like a mistake in
commit cd5b956817d0a6585d44f50857d690e9dc58145e
Date: Tue Mar 14 10:33:39 2006 +0000
INTEGRATION: CWS pbrwuno (1.3.88); FILE MERGED
Change-Id: I828501f32b3caff8c4ca05a8a8c4b063dccecd3b
Reviewed-on: https://gerrit.libreoffice.org/60196
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/propctrlr/submissionhandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/propctrlr/submissionhandler.cxx b/extensions/source/propctrlr/submissionhandler.cxx index 664c9c9725b3..164815bbf554 100644 --- a/extensions/source/propctrlr/submissionhandler.cxx +++ b/extensions/source/propctrlr/submissionhandler.cxx @@ -280,7 +280,7 @@ namespace pcr if ( !_rxControlFactory.is() ) throw NullPointerException(); if ( !m_pHelper.get() ) - RuntimeException(); + throw RuntimeException(); std::vector< OUString > aListEntries; PropertyId nPropId( impl_getPropertyId_throwUnknownProperty( _rPropertyName ) ); |