diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-02 11:22:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-02 11:23:11 +0200 |
commit | e09df5a70a57c06b2be846ca673dcc8b4f003918 (patch) | |
tree | 6bfb7a4b5bc257fe18582d1cc4eee25898b13a0a /sc/source/ui/inc/csvcontrol.hxx | |
parent | da83d2899ec20a6cd181c7a0d5f465bd11088a5a (diff) |
loplugin:unuseddefaultparams in sc (part1)
Change-Id: Ie7c23bfee7cb6c73e455a47801f7eb1b481a8cf0
Diffstat (limited to 'sc/source/ui/inc/csvcontrol.hxx')
-rw-r--r-- | sc/source/ui/inc/csvcontrol.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
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; } |