diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-10-24 16:04:07 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-10-25 13:42:00 +0100 |
commit | a5d6dca3e98ea1664be267c089a47766ce7e0a48 (patch) | |
tree | 0984a56c40af67e2614fad142f174c84136378b9 /vcl/aqua | |
parent | 0862556f1e79f6055435499d86f4c2b3464d2adc (diff) |
Fix for fdo41997 continuation of VCL cleanup
Diffstat (limited to 'vcl/aqua')
-rw-r--r-- | vcl/aqua/source/app/salinst.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/aqua/source/app/salinst.cxx b/vcl/aqua/source/app/salinst.cxx index 63d657ce4f39..4ef19f938749 100644 --- a/vcl/aqua/source/app/salinst.cxx +++ b/vcl/aqua/source/app/salinst.cxx @@ -854,15 +854,15 @@ void AquaSalInstance::Yield( bool bWait, bool bHandleAllCurrentEvents ) bool AquaSalInstance::AnyInput( sal_uInt16 nType ) { - if( nType & INPUT_APPEVENT ) + if( nType & VCL_INPUT_APPEVENT ) { if( ! aAppEventList.empty() ) return true; - if( nType == INPUT_APPEVENT ) + if( nType == VCL_INPUT_APPEVENT ) return false; } - if( nType & INPUT_TIMER ) + if( nType & VCL_INPUT_TIMER ) { if( AquaSalTimer::pRunningTimer ) { @@ -885,9 +885,9 @@ bool AquaSalInstance::AnyInput( sal_uInt16 nType ) NSMouseEnteredMask | NSMouseExitedMask; if( nType & VCL_INPUT_KEYBOARD) nEventMask |= NSKeyDownMask | NSKeyUpMask | NSFlagsChangedMask; - if( nType & INPUT_OTHER) + if( nType & VCL_INPUT_OTHER) nEventMask |= NSTabletPoint; - // TODO: INPUT_PAINT / more INPUT_OTHER + // TODO: VCL_INPUT_PAINT / more VCL_INPUT_OTHER if( !nType) return false; |