summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterAnimation.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterAnimation.cxx')
-rw-r--r--sdext/source/presenter/PresenterAnimation.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/sdext/source/presenter/PresenterAnimation.cxx b/sdext/source/presenter/PresenterAnimation.cxx
index 8f274eaf876f..cacf98d74444 100644
--- a/sdext/source/presenter/PresenterAnimation.cxx
+++ b/sdext/source/presenter/PresenterAnimation.cxx
@@ -26,7 +26,6 @@
*
************************************************************************/
-
#include "PresenterAnimation.hxx"
#include <osl/time.h>
@@ -42,9 +41,6 @@ sal_uInt64 GetCurrentTime (void)
return 0;
}
-
-
-
PresenterAnimation::PresenterAnimation (
const sal_uInt64 nStartDelay,
const sal_uInt64 nTotalDuration,
@@ -57,40 +53,25 @@ PresenterAnimation::PresenterAnimation (
{
}
-
-
-
PresenterAnimation::~PresenterAnimation (void)
{
}
-
-
-
sal_uInt64 PresenterAnimation::GetStartTime (void)
{
return mnStartTime;
}
-
-
-
sal_uInt64 PresenterAnimation::GetEndTime (void)
{
return mnStartTime + mnTotalDuration;
}
-
-
-
sal_uInt64 PresenterAnimation::GetStepDuration (void)
{
return mnStepDuration;
}
-
-
-
void PresenterAnimation::AddEndCallback (const Callback& rCallback)
{
if (mpEndCallbacks.get() == NULL)
@@ -98,8 +79,6 @@ void PresenterAnimation::AddEndCallback (const Callback& rCallback)
mpEndCallbacks->push_back(rCallback);
}
-
-
void PresenterAnimation::RunStartCallbacks (void)
{
if (mpStartCallbacks.get() != NULL)
@@ -110,9 +89,6 @@ void PresenterAnimation::RunStartCallbacks (void)
}
}
-
-
-
void PresenterAnimation::RunEndCallbacks (void)
{
if (mpEndCallbacks.get() != NULL)
@@ -123,9 +99,6 @@ void PresenterAnimation::RunEndCallbacks (void)
}
}
-
-
-
} } // end of namespace ::sdext::presenter
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */