summaryrefslogtreecommitdiff
path: root/svtools/source/contnr/ivctrl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-13 09:58:40 +0200
committerNoel Grandin <noel@peralex.com>2016-01-13 12:16:23 +0200
commit6cbf151fa91ce50f7b1582c6e502a4474ba54b8e (patch)
tree8d0c4b72802a107ab86fa54ce4d365fe047d0b7b /svtools/source/contnr/ivctrl.cxx
parent88ee54654e95f1f62266ee2737d2b82c8d5080a6 (diff)
loplugin:unusedmethods unused return value in include/svtools
Change-Id: Ibc83f032bb703559cc643933e53e8670bd6560b3
Diffstat (limited to 'svtools/source/contnr/ivctrl.cxx')
-rw-r--r--svtools/source/contnr/ivctrl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/contnr/ivctrl.cxx b/svtools/source/contnr/ivctrl.cxx
index b69ce115308e..afa032a08c6e 100644
--- a/svtools/source/contnr/ivctrl.cxx
+++ b/svtools/source/contnr/ivctrl.cxx
@@ -286,9 +286,9 @@ bool SvtIconChoiceCtrl::IsEntryEditing() const
return _pImp->IsEntryEditing();
}
-bool SvtIconChoiceCtrl::SetChoiceWithCursor ( bool bDo )
+void SvtIconChoiceCtrl::SetChoiceWithCursor ( bool bDo )
{
- return _pImp->SetChoiceWithCursor (bDo);
+ _pImp->SetChoiceWithCursor (bDo);
}
void SvtIconChoiceCtrl::KeyInput( const KeyEvent& rKEvt )