From d05a64df34fd143670cb939b72abfb32d6b714c7 Mon Sep 17 00:00:00 2001 From: Tobias Madl Date: Fri, 6 Mar 2015 14:48:18 +0100 Subject: Timer/Idle: adapted inherited funktions Change-Id: I7714a4638b03d020820b276028c0819ef054fa26 --- svx/source/sdr/animation/scheduler.cxx | 2 +- svx/source/sdr/contact/objectcontactofpageview.cxx | 6 +++--- svx/source/sdr/contact/viewobjectcontactofpageobj.cxx | 6 +++--- svx/source/sdr/event/eventhandler.cxx | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'svx/source/sdr') diff --git a/svx/source/sdr/animation/scheduler.cxx b/svx/source/sdr/animation/scheduler.cxx index 099af576c38b..e2afe89eeb14 100644 --- a/svx/source/sdr/animation/scheduler.cxx +++ b/svx/source/sdr/animation/scheduler.cxx @@ -159,7 +159,7 @@ namespace sdr Stop(); } - void Scheduler::Timeout() + void Scheduler::Invoke() { // stop timer and add time Stop(); diff --git a/svx/source/sdr/contact/objectcontactofpageview.cxx b/svx/source/sdr/contact/objectcontactofpageview.cxx index 813dc8eb3d6a..939f01283b0b 100644 --- a/svx/source/sdr/contact/objectcontactofpageview.cxx +++ b/svx/source/sdr/contact/objectcontactofpageview.cxx @@ -66,7 +66,7 @@ namespace sdr ObjectContactOfPageView::~ObjectContactOfPageView() { // execute missing LazyInvalidates and stop timer - Timeout(); + Invoke(); } // LazyInvalidate request. Take action. @@ -87,13 +87,13 @@ namespace sdr if(bInvalidateDuringPaint) { // there are still non-triggered LazyInvalidate events, trigger these - Timeout(); + Invoke(); } } } // From baseclass Timer, the timeout call triggered by the LazyInvalidate mechanism - void ObjectContactOfPageView::Timeout() + void ObjectContactOfPageView::Invoke() { // stop the timer Stop(); diff --git a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx index cd5e13ba22cd..dc705259919e 100644 --- a/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx +++ b/svx/source/sdr/contact/viewobjectcontactofpageobj.cxx @@ -54,7 +54,7 @@ public: virtual void setLazyInvalidate(ViewObjectContact& rVOC) SAL_OVERRIDE; // From baseclass Timer, the timeout call triggered by the LazyInvalidate mechanism - virtual void Timeout() SAL_OVERRIDE; + virtual void Invoke() SAL_OVERRIDE; // get primitive visualization drawinglayer::primitive2d::Primitive2DSequence createPrimitive2DSequenceForPage(const DisplayInfo& rDisplayInfo); @@ -91,7 +91,7 @@ PagePrimitiveExtractor::PagePrimitiveExtractor( PagePrimitiveExtractor::~PagePrimitiveExtractor() { // execute missing LazyInvalidates and stop timer - Timeout(); + Invoke(); } void PagePrimitiveExtractor::setLazyInvalidate(ViewObjectContact& /*rVOC*/) @@ -102,7 +102,7 @@ void PagePrimitiveExtractor::setLazyInvalidate(ViewObjectContact& /*rVOC*/) } // From baseclass Timer, the timeout call triggered by the LazyInvalidate mechanism -void PagePrimitiveExtractor::Timeout() +void PagePrimitiveExtractor::Invoke() { // stop the timer Stop(); diff --git a/svx/source/sdr/event/eventhandler.cxx b/svx/source/sdr/event/eventhandler.cxx index 40865d559fbd..c8c4f7a1ae99 100644 --- a/svx/source/sdr/event/eventhandler.cxx +++ b/svx/source/sdr/event/eventhandler.cxx @@ -133,7 +133,7 @@ namespace sdr } // The timer when it is triggered; from class Timer - void TimerEventHandler::Timeout() + void TimerEventHandler::Invoke() { ExecuteEvents(); } -- cgit