diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-14 13:54:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-15 09:36:41 +0200 |
commit | abb87856dd6a722245cc9dd690bfcec6ecd901da (patch) | |
tree | a2d28f2bebb91cb8b25a51a8b5ae9890ebddd3ce /sc/source/ui/inc/olinefun.hxx | |
parent | 6f2ce5c31708e5914d6d17d69b45f15a4429f8e3 (diff) |
loplugin:unusedmethods unused return value in sc
Change-Id: Ic0b4d7efb2679f735892806d66258af231cda3fe
Diffstat (limited to 'sc/source/ui/inc/olinefun.hxx')
-rw-r--r-- | sc/source/ui/inc/olinefun.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/olinefun.hxx b/sc/source/ui/inc/olinefun.hxx index 3695934b4ee2..56c1efba205e 100644 --- a/sc/source/ui/inc/olinefun.hxx +++ b/sc/source/ui/inc/olinefun.hxx @@ -34,10 +34,10 @@ public: ScOutlineDocFunc( ScDocShell& rDocSh ): rDocShell(rDocSh) {} ~ScOutlineDocFunc() {} - bool MakeOutline( const ScRange& rRange, bool bColumns, bool bRecord, bool bApi ); - bool RemoveOutline( const ScRange& rRange, bool bColumns, bool bRecord, bool bApi ); + void MakeOutline( const ScRange& rRange, bool bColumns, bool bRecord, bool bApi ); + void RemoveOutline( const ScRange& rRange, bool bColumns, bool bRecord, bool bApi ); bool RemoveAllOutlines( SCTAB nTab, bool bRecord ); - bool AutoOutline( const ScRange& rRange, bool bRecord ); + void AutoOutline( const ScRange& rRange, bool bRecord ); bool SelectLevel( SCTAB nTab, bool bColumns, sal_uInt16 nLevel, bool bRecord, bool bPaint ); |