diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-22 12:49:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-25 10:31:35 +0200 |
commit | b419da0f53cf7f65b1d0c58351176ece23fbfe1f (patch) | |
tree | b29c038348d6aae8e5ec9c0c97ed8eeb41f5cd67 /extensions | |
parent | acf5049188e1be0ededc70f9bbedaa0032610680 (diff) |
convert SHOW constants to scoped enum
Change-Id: I2712a0901049885502cade31f9757f712048bb33
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index 10ef520420ca..389c39d541a5 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -112,7 +112,7 @@ public: virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE; void Resize() SAL_OVERRIDE; - void Show( bool bVisible = true, sal_uInt16 nFlags = SHOW_NOACTIVATE ); + void Show( bool bVisible = true, ShowFlags nFlags = ShowFlags::NoActivate ); void SetTipPosPixel( const Point& rTipPos ) { maTipPos = rTipPos; } void SetTitleAndText( const OUString& rTitle, const OUString& rText, const Image& rImage ); @@ -862,7 +862,7 @@ void BubbleWindow::MouseButtonDown( const MouseEvent& ) } -void BubbleWindow::Show( bool bVisible, sal_uInt16 nFlags ) +void BubbleWindow::Show( bool bVisible, ShowFlags nFlags ) { SolarMutexGuard aGuard; |