diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-15 09:36:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-15 09:36:42 +0200 |
commit | ed373ea7efd34ca6baab8ddbf809e6f2a06f1a9e (patch) | |
tree | ee982f66e33240dcf8472eae9a5fbcec4d4a7a5e /xmloff/source/script/XMLEventsImportContext.cxx | |
parent | 098462c6f69c40422c74cef8f052b7b1ff0c90e8 (diff) |
loplugin:unusedmethods unused return value in include/xmloff
Change-Id: I6615a467152a50e9c65f04fd0d6c8cc128517bdb
Diffstat (limited to 'xmloff/source/script/XMLEventsImportContext.cxx')
-rw-r--r-- | xmloff/source/script/XMLEventsImportContext.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xmloff/source/script/XMLEventsImportContext.cxx b/xmloff/source/script/XMLEventsImportContext.cxx index e9dfc24c0a91..3e60c2d5d769 100644 --- a/xmloff/source/script/XMLEventsImportContext.cxx +++ b/xmloff/source/script/XMLEventsImportContext.cxx @@ -157,7 +157,7 @@ void XMLEventsImportContext::SetEvents( } } -bool XMLEventsImportContext::GetEventSequence( +void XMLEventsImportContext::GetEventSequence( const OUString& rName, Sequence<PropertyValue> & rSequence ) { @@ -176,10 +176,7 @@ bool XMLEventsImportContext::GetEventSequence( if (aIter != aCollectEvents.end()) { rSequence = aIter->second; - return true; } - - return false; } void XMLEventsImportContext::AddEventValues( |