diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-10-21 16:54:35 -0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-10-21 20:48:03 +0100 |
commit | b0224f8050373cbdde58c3dee1bbda71976b50b6 (patch) | |
tree | d04b160b0c28c9be5446130234b995e6fe150bd8 /svtools | |
parent | 7bf06ba95d6ba0e673f2aff5b4412dbf08702590 (diff) |
Fix for bug fdo#41997, cleanup vcl enumeration
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/inettbc.cxx | 2 | ||||
-rw-r--r-- | svtools/source/edit/textview.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/inettbc.cxx b/svtools/source/control/inettbc.cxx index 50739d84c018..097a8ada8658 100644 --- a/svtools/source/control/inettbc.cxx +++ b/svtools/source/control/inettbc.cxx @@ -770,7 +770,7 @@ void SvtMatchContext_Impl::run() //------------------------------------------------------------------------- void SvtURLBox::TryAutoComplete( sal_Bool bForce ) { - if( Application::AnyInput( INPUT_KEYBOARD ) ) return; + if( Application::AnyInput( VCL_INPUT_KEYBOARD ) ) return; String aMatchString; String aCurText = GetText(); diff --git a/svtools/source/edit/textview.cxx b/svtools/source/edit/textview.cxx index 1ee50008aeaf..44d9f4ef9694 100644 --- a/svtools/source/edit/textview.cxx +++ b/svtools/source/edit/textview.cxx @@ -791,7 +791,7 @@ sal_Bool TextView::KeyInput( const KeyEvent& rKeyEvent ) if ( bModified ) { // Idle-Formatter nur, wenn AnyInput. - if ( bAllowIdle && Application::AnyInput( INPUT_KEYBOARD) ) + if ( bAllowIdle && Application::AnyInput( VCL_INPUT_KEYBOARD) ) mpImpl->mpTextEngine->IdleFormatAndUpdate( this ); else mpImpl->mpTextEngine->FormatAndUpdate( this); |