diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-14 16:32:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-15 09:36:42 +0200 |
commit | 098462c6f69c40422c74cef8f052b7b1ff0c90e8 (patch) | |
tree | b8d3e6f848b18753c9fbd91468b8094b029af742 /sc/inc/optutil.hxx | |
parent | f19e32b101d56ceb7215a6a9d45d39a2cd264189 (diff) |
loplugin:unusedmethods unused return value in sc
Change-Id: I3ccc98d2e042120093e2e8508518681588692393
Diffstat (limited to 'sc/inc/optutil.hxx')
-rw-r--r-- | sc/inc/optutil.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/optutil.hxx b/sc/inc/optutil.hxx index deb2d2d8b0ab..17e752e5fbbb 100644 --- a/sc/inc/optutil.hxx +++ b/sc/inc/optutil.hxx @@ -51,9 +51,9 @@ public: css::uno::Sequence< css::uno::Any> GetProperties(const css::uno::Sequence< OUString >& rNames) { return ConfigItem::GetProperties( rNames ); } - bool PutProperties( const css::uno::Sequence< OUString >& rNames, + void PutProperties( const css::uno::Sequence< OUString >& rNames, const css::uno::Sequence< css::uno::Any>& rValues) - { return ConfigItem::PutProperties( rNames, rValues ); } + { ConfigItem::PutProperties( rNames, rValues ); } using ConfigItem::EnableNotification; using ConfigItem::GetNodeNames; |