summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2011-10-21 16:54:35 -0200
committerMichael Meeks <michael.meeks@suse.com>2011-10-21 20:48:03 +0100
commitb0224f8050373cbdde58c3dee1bbda71976b50b6 (patch)
treed04b160b0c28c9be5446130234b995e6fe150bd8 /formula
parent7bf06ba95d6ba0e673f2aff5b4412dbf08702590 (diff)
Fix for bug fdo#41997, cleanup vcl enumeration
Diffstat (limited to 'formula')
-rw-r--r--formula/source/ui/dlg/formula.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/formula/source/ui/dlg/formula.cxx b/formula/source/ui/dlg/formula.cxx
index 97ef66390d26..3b7c2eca142e 100644
--- a/formula/source/ui/dlg/formula.cxx
+++ b/formula/source/ui/dlg/formula.cxx
@@ -592,7 +592,7 @@ sal_Bool FormulaDlg_Impl::CalcValue( const String& rStrExp, String& rStrResult )
{
// Only calculate the value when there isn't any more keyboard input:
- if ( !Application::AnyInput( INPUT_KEYBOARD ) )
+ if ( !Application::AnyInput( VCL_INPUT_KEYBOARD ) )
{
bResult = m_pHelper->calculateValue(rStrExp,rStrResult);
}
@@ -630,7 +630,7 @@ sal_Bool FormulaDlg_Impl::CalcStruct( const String& rStrExp)
{
// Only calculate the value when there isn't any more keyboard input:
- if ( !Application::AnyInput( INPUT_KEYBOARD ) )
+ if ( !Application::AnyInput( VCL_INPUT_KEYBOARD ) )
{
pStructPage->ClearStruct();