summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterTimer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterTimer.cxx')
-rw-r--r--sdext/source/presenter/PresenterTimer.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sdext/source/presenter/PresenterTimer.cxx b/sdext/source/presenter/PresenterTimer.cxx
index 8841d8234bd4..646c751d4674 100644
--- a/sdext/source/presenter/PresenterTimer.cxx
+++ b/sdext/source/presenter/PresenterTimer.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -91,10 +91,10 @@ public:
const PresenterTimer::Task& rTask,
const TimeValue& rDueTime,
const sal_Int64 nRepeatIntervall);
-
+
void ScheduleTask (const SharedTimerTask& rpTask);
void CancelTask (const sal_Int32 nTaskId);
-
+
static bool GetCurrentTime (TimeValue& rCurrentTime);
static sal_Int64 GetTimeDifference (
const TimeValue& rTargetTime,
@@ -123,7 +123,7 @@ private:
virtual ~TimerScheduler (void);
class Deleter {public: void operator () (TimerScheduler* pScheduler) { delete pScheduler; } };
friend class Deleter;
-
+
virtual void SAL_CALL run (void);
virtual void SAL_CALL onTerminated (void);
};
@@ -141,7 +141,7 @@ sal_Int32 PresenterTimer::ScheduleSingleTaskRelative (
const Task& rTask,
const sal_Int64 nDelay)
{
- return ScheduleRepeatedTask(rTask, nDelay, 0);
+ return ScheduleRepeatedTask(rTask, nDelay, 0);
}
@@ -267,7 +267,7 @@ void TimerScheduler::ScheduleTask (const SharedTimerTask& rpTask)
osl::MutexGuard aGuard (maTaskContainerMutex);
maScheduledTasks.insert(rpTask);
-
+
if ( ! mbIsRunning)
{
mbIsRunning = true;
@@ -337,7 +337,7 @@ void SAL_CALL TimerScheduler::run (void)
sal_Int64 nDifference = 0;
{
::osl::MutexGuard aGuard (maTaskContainerMutex);
-
+
// There are no more scheduled task. Leave this loop, function and
// live of the TimerScheduler.
if (maScheduledTasks.empty())
@@ -352,7 +352,7 @@ void SAL_CALL TimerScheduler::run (void)
maScheduledTasks.erase(maScheduledTasks.begin());
}
}
-
+
// Acquire a reference to the current task.
{
::osl::MutexGuard aGuard (maCurrentTaskMutex);
@@ -384,7 +384,7 @@ void SAL_CALL TimerScheduler::run (void)
ScheduleTask(mpCurrentTask);
}
}
-
+
}
// Release reference to the current task.
@@ -478,7 +478,7 @@ TimerTask::TimerTask (
const css::uno::Reference<css::uno::XComponentContext>& rxContext)
{
::osl::MutexGuard aSolarGuard (::osl::Mutex::getGlobalMutex());
-
+
::rtl::Reference<PresenterClockTimer> pTimer;
if (mpInstance.is())
{
@@ -656,13 +656,13 @@ void SAL_CALL PresenterClockTimer::notify (const css::uno::Any& rUserData)
osl::MutexGuard aGuard (maMutex);
mbIsCallbackPending = false;
-
+
::std::copy(
maListeners.begin(),
maListeners.end(),
::std::back_inserter(aListenerCopy));
}
-
+
if (aListenerCopy.size() > 0)
{
ListenerContainer::const_iterator iListener;