summaryrefslogtreecommitdiff
path: root/sc
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 /sc
parent0862556f1e79f6055435499d86f4c2b3464d2adc (diff)
Fix for fdo41997 continuation of VCL cleanup
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/documen8.cxx2
-rw-r--r--sc/source/ui/app/scmod.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/documen8.cxx b/sc/source/core/data/documen8.cxx
index 5f0ca06c83af..61dc83799a09 100644
--- a/sc/source/core/data/documen8.cxx
+++ b/sc/source/core/data/documen8.cxx
@@ -450,7 +450,7 @@ void ScDocument::InvalidateTextWidth( const ScAddress* pAdrFrom, const ScAddress
//------------------------------------------------------------------------
#define CALCMAX 1000 // Berechnungen
-#define ABORT_EVENTS (INPUT_ANY & ~INPUT_TIMER & ~INPUT_OTHER)
+#define ABORT_EVENTS (VCL_INPUT_ANY & ~VCL_INPUT_TIMER & ~VCL_INPUT_OTHER)
sal_Bool ScDocument::IdleCalcTextWidth() // sal_True = demnaechst wieder versuchen
{
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index b4284e745783..fe716365c111 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -1822,7 +1822,7 @@ void lcl_CheckNeedsRepaint( ScDocShell* pDocShell )
IMPL_LINK( ScModule, IdleHandler, Timer*, EMPTYARG )
{
- if ( Application::AnyInput( INPUT_MOUSEANDKEYBOARD ) )
+ if ( Application::AnyInput( VCL_INPUT_MOUSEANDKEYBOARD ) )
{
aIdleTimer.Start(); // Timeout unveraendert
return 0;