From e09df5a70a57c06b2be846ca673dcc8b4f003918 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 2 Mar 2016 11:22:45 +0200 Subject: loplugin:unuseddefaultparams in sc (part1) Change-Id: Ie7c23bfee7cb6c73e455a47801f7eb1b481a8cf0 --- sc/source/ui/inc/csvcontrol.hxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sc/source/ui/inc/csvcontrol.hxx') diff --git a/sc/source/ui/inc/csvcontrol.hxx b/sc/source/ui/inc/csvcontrol.hxx index eb7a7fbefb6b..f645a6148553 100644 --- a/sc/source/ui/inc/csvcontrol.hxx +++ b/sc/source/ui/inc/csvcontrol.hxx @@ -273,9 +273,8 @@ public: void Repaint( bool bInvalidate = false ); /** Increases no-repaint counter (controls do not repaint until the last EnableRepaint()). */ void DisableRepaint(); - /** Decreases no-repaint counter and repaints if counter reaches 0. - @param bInvalidate true = invalidates graphics of this control (not all). */ - void EnableRepaint( bool bInvalidate = false ); + /** Decreases no-repaint counter and repaints if counter reaches 0. */ + void EnableRepaint(); /** Returns true, if controls will not repaint. */ inline bool IsNoRepaint() const { return mrData.mnNoRepaint > 0; } -- cgit