diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-25 09:04:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-25 10:38:59 +0200 |
commit | 7a820058909b766f3d185cf619298f741bb44b2e (patch) | |
tree | 355e5acfdd8b81ad223bd8660e046915e4343727 /extensions | |
parent | bd73f79990da8d4249fbc072ea3eab4bc3bea2c6 (diff) |
loplugin:constantparam
Change-Id: Ic0079cf1d5d2463963b1be08a59cb93db6f12870
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99417
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index c2aad90abf59..2ec81804cf71 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -100,7 +100,7 @@ public: virtual void MouseButtonDown( const MouseEvent& rMEvt ) override; virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override; void Resize() override; - void Show( bool bVisible = true, ShowFlags nFlags = ShowFlags::NoActivate ); + void Show( bool bVisible = true ); void SetTipPosPixel( const Point& rTipPos ) { maTipPos = rTipPos; } void SetTitleAndText( const OUString& rTitle, const OUString& rText, const Image& rImage ); @@ -785,7 +785,7 @@ void BubbleWindow::MouseButtonDown( const MouseEvent& ) } -void BubbleWindow::Show( bool bVisible, ShowFlags nFlags ) +void BubbleWindow::Show( bool bVisible ) { SolarMutexGuard aGuard; @@ -829,7 +829,7 @@ void BubbleWindow::Show( bool bVisible, ShowFlags nFlags ) } SetPosSizePixel( aPos, aWindowSize ); - FloatingWindow::Show( bVisible, nFlags ); + FloatingWindow::Show( bVisible, ShowFlags::NoActivate ); } |