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/win | |
parent | 0862556f1e79f6055435499d86f4c2b3464d2adc (diff) |
Fix for fdo41997 continuation of VCL cleanup
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/source/app/salinst.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/win/source/app/salinst.cxx b/vcl/win/source/app/salinst.cxx index 10655ef77f77..caf0d273cba1 100644 --- a/vcl/win/source/app/salinst.cxx +++ b/vcl/win/source/app/salinst.cxx @@ -904,7 +904,7 @@ bool WinSalInstance::AnyInput( sal_uInt16 nType ) { MSG aMsg; - if ( (nType & (INPUT_ANY)) == (INPUT_ANY) ) + if ( (nType & (VCL_INPUT_ANY)) == (VCL_INPUT_ANY) ) { // revert bugfix for #108919# which never reported timeouts when called from the timer handler // which made the application completely unresponsive during background formatting @@ -913,7 +913,7 @@ bool WinSalInstance::AnyInput( sal_uInt16 nType ) } else { - if ( nType & INPUT_MOUSE ) + if ( nType & VCL_INPUT_MOUSE ) { // Test for mouse input if ( ImplPeekMessage( &aMsg, 0, WM_MOUSEFIRST, WM_MOUSELAST, @@ -936,7 +936,7 @@ bool WinSalInstance::AnyInput( sal_uInt16 nType ) } } - if ( nType & INPUT_PAINT ) + if ( nType & VCL_INPUT_PAINT ) { // Test for paint input if ( ImplPeekMessage( &aMsg, 0, WM_PAINT, WM_PAINT, @@ -960,7 +960,7 @@ bool WinSalInstance::AnyInput( sal_uInt16 nType ) return true; } - if ( nType & INPUT_TIMER ) + if ( nType & VCL_INPUT_TIMER ) { // Test for timer input if ( ImplPeekMessage( &aMsg, 0, WM_TIMER, WM_TIMER, @@ -969,7 +969,7 @@ bool WinSalInstance::AnyInput( sal_uInt16 nType ) } - if ( nType & INPUT_OTHER ) + if ( nType & VCL_INPUT_OTHER ) { // Test for any input if ( ImplPeekMessage( &aMsg, 0, 0, 0, PM_NOREMOVE | PM_NOYIELD ) ) |