summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/tools/TimerBasedTaskExecution.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:20:00 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:41:09 +0200
commited6b8a100c1aabb342573f252509573bbe124d29 (patch)
tree35874493d9470202b3221aa2a1666b6647494242 /sd/source/ui/tools/TimerBasedTaskExecution.cxx
parentfix build after rebase (diff)
downloadcore-ed6b8a100c1aabb342573f252509573bbe124d29.tar.gz
core-ed6b8a100c1aabb342573f252509573bbe124d29.zip
remove whitespaces
Change-Id: I9daea42a433b5032931a722878874917cf37f4d1
Diffstat (limited to 'sd/source/ui/tools/TimerBasedTaskExecution.cxx')
-rw-r--r--sd/source/ui/tools/TimerBasedTaskExecution.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/sd/source/ui/tools/TimerBasedTaskExecution.cxx b/sd/source/ui/tools/TimerBasedTaskExecution.cxx
index a80680e79f0b..085cb8e2ecc9 100644
--- a/sd/source/ui/tools/TimerBasedTaskExecution.cxx
+++ b/sd/source/ui/tools/TimerBasedTaskExecution.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "tools/TimerBasedTaskExecution.hxx"
#include "tools/AsynchronousTask.hxx"
#include <tools/time.hxx>
@@ -38,9 +37,6 @@ public:
}
};
-
-
-
::boost::shared_ptr<TimerBasedTaskExecution> TimerBasedTaskExecution::Create (
const ::boost::shared_ptr<AsynchronousTask>& rpTask,
sal_uInt32 nMillisecondsBetweenSteps,
@@ -56,18 +52,12 @@ public:
return pExecution;
}
-
-
-
void TimerBasedTaskExecution::Release (void)
{
maTimer.Stop();
mpSelf.reset();
}
-
-
-
//static
void TimerBasedTaskExecution::ReleaseTask (
const ::boost::weak_ptr<TimerBasedTaskExecution>& rpExecution)
@@ -89,9 +79,6 @@ void TimerBasedTaskExecution::ReleaseTask (
}
}
-
-
-
TimerBasedTaskExecution::TimerBasedTaskExecution (
const ::boost::shared_ptr<AsynchronousTask>& rpTask,
sal_uInt32 nMillisecondsBetweenSteps,
@@ -107,17 +94,11 @@ TimerBasedTaskExecution::TimerBasedTaskExecution (
maTimer.Start();
}
-
-
-
TimerBasedTaskExecution::~TimerBasedTaskExecution (void)
{
maTimer.Stop();
}
-
-
-
void TimerBasedTaskExecution::SetSelf (
const ::boost::shared_ptr<TimerBasedTaskExecution>& rpSelf)
{
@@ -125,9 +106,6 @@ void TimerBasedTaskExecution::SetSelf (
mpSelf = rpSelf;
}
-
-
-
IMPL_LINK_NOARG(TimerBasedTaskExecution, TimerCallback)
{
if (mpTask.get() != NULL)
@@ -158,7 +136,6 @@ IMPL_LINK_NOARG(TimerBasedTaskExecution, TimerCallback)
return 0;
}
-
} } // end of namespace ::sd::tools
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */