summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-05-22 12:49:04 +0200
committerNoel Grandin <noel@peralex.com>2015-05-25 10:31:35 +0200
commitb419da0f53cf7f65b1d0c58351176ece23fbfe1f (patch)
treeb29c038348d6aae8e5ec9c0c97ed8eeb41f5cd67 /vcl/source/app
parentacf5049188e1be0ededc70f9bbedaa0032610680 (diff)
convert SHOW constants to scoped enum
Change-Id: I2712a0901049885502cade31f9757f712048bb33
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/help.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx
index 7014a790f789..0ad533a2272e 100644
--- a/vcl/source/app/help.cxx
+++ b/vcl/source/app/help.cxx
@@ -352,7 +352,7 @@ void HelpTextWindow::SetHelpText( const OUString& rHelpText )
void HelpTextWindow::ImplShow()
{
ImplDelData aDogTag( this );
- Show( true, SHOW_NOACTIVATE );
+ Show( true, ShowFlags::NoActivate );
if( !aDogTag.IsDead() )
Update();
}