summaryrefslogtreecommitdiff
path: root/include/svl/ownlist.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-13 08:44:21 +0200
committerNoel Grandin <noel@peralex.com>2016-01-13 08:44:46 +0200
commit8bd9eb833444810dec3debd0215bd26dffc2fb91 (patch)
tree67af5f48ff3b6a83e50ff8980d8b6fad96cc1446 /include/svl/ownlist.hxx
parentfa7c7b160136e4b08bc1e1aef9017d4596ad6184 (diff)
loplugin:unusedmethods unused return value in include/svl
Change-Id: I759fe8769daccea07c2157bfb5912df8ba285534
Diffstat (limited to 'include/svl/ownlist.hxx')
-rw-r--r--include/svl/ownlist.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/ownlist.hxx b/include/svl/ownlist.hxx
index 171d38deab44..460c4a3c0f83 100644
--- a/include/svl/ownlist.hxx
+++ b/include/svl/ownlist.hxx
@@ -62,10 +62,10 @@ private:
::std::vector< SvCommand > aCommandList;
public:
- SvCommand& Append( const OUString & rCommand, const OUString & rArg );
- bool AppendCommands( const OUString & rCmd, sal_Int32 * pEaten );
+ void Append( const OUString & rCommand, const OUString & rArg );
+ void AppendCommands( const OUString & rCmd, sal_Int32 * pEaten );
- bool FillFromSequence( const css::uno::Sequence < css::beans::PropertyValue >& );
+ void FillFromSequence( const css::uno::Sequence < css::beans::PropertyValue >& );
void FillSequence( css::uno::Sequence < css::beans::PropertyValue >& );
size_t size() const { return aCommandList.size(); }