diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-01 16:49:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-07 11:20:43 +0200 |
commit | 8aa3cb98adb8675ff3f09d2c1da35d2423e57493 (patch) | |
tree | 3e7f2df75f1176a64034be8c7de592dc92996054 /desktop | |
parent | fa52e2090651fc2b2f3ba77b8f0af196d705730f (diff) |
fdo#84938: convert VCL_INPUT_ #defines to 'enum class'
Change-Id: I155e45f58974a2b946c4a7703b350bcbfbad342e
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/app.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index af0cf51f2fcd..d861111bfd58 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1533,7 +1533,7 @@ int Desktop::Main() (SvtModuleOptions().IsModuleInstalled(SvtModuleOptions::E_SSTARTMODULE)) && (!bExistsRecoveryData ) && (!bExistsSessionData ) && - (!Application::AnyInput( VCL_INPUT_APPEVENT ) )) + (!Application::AnyInput( VclInputFlags::APPEVENT ) )) { SAL_INFO( "desktop.app", "{ create BackingComponent" ); ShowBackingComponent(this); @@ -2413,7 +2413,7 @@ void Desktop::OpenClients() if ( xList->hasElements() ) return; - if ( rArgs.IsQuickstart() || rArgs.IsInvisible() || Application::AnyInput( VCL_INPUT_APPEVENT ) ) + if ( rArgs.IsQuickstart() || rArgs.IsInvisible() || Application::AnyInput( VclInputFlags::APPEVENT ) ) // soffice was started as tray icon ... return; |