summaryrefslogtreecommitdiff
path: root/vcl/ios
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2011-10-24 16:04:07 +0100
committerMichael Meeks <michael.meeks@suse.com>2011-10-25 13:42:00 +0100
commita5d6dca3e98ea1664be267c089a47766ce7e0a48 (patch)
tree0984a56c40af67e2614fad142f174c84136378b9 /vcl/ios
parent0862556f1e79f6055435499d86f4c2b3464d2adc (diff)
Fix for fdo41997 continuation of VCL cleanup
Diffstat (limited to 'vcl/ios')
-rw-r--r--vcl/ios/source/app/salinst.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/ios/source/app/salinst.cxx b/vcl/ios/source/app/salinst.cxx
index f7c96853bc0d..e91e34fa1e78 100644
--- a/vcl/ios/source/app/salinst.cxx
+++ b/vcl/ios/source/app/salinst.cxx
@@ -521,15 +521,15 @@ void IosSalInstance::Yield( bool bWait, bool bHandleAllCurrentEvents )
bool IosSalInstance::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( IosSalTimer::pRunningTimer )
{