summaryrefslogtreecommitdiff
path: root/vcl/source/app/timer.cxx
diff options
context:
space:
mode:
authorTobias Madl <tobias.madl.dev@gmail.com>2015-03-09 08:44:26 +0000
committerTobias Madl <tobias.madl.dev@gmail.com>2015-03-09 08:45:48 +0000
commit9c7016b5b530ca212b1275f44f9e2fc0527109ee (patch)
tree5840038c6aa132916f7aa4863ec03eef18c6ecfd /vcl/source/app/timer.cxx
parente379476e449c2e711f9d782cfb06b70211874c4c (diff)
Scheduler: Changed uLong to uInt32/uInt64
Change-Id: Ic60463027c7f1b2d513539adba834b8d8e0ce6d3
Diffstat (limited to 'vcl/source/app/timer.cxx')
-rw-r--r--vcl/source/app/timer.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/source/app/timer.cxx b/vcl/source/app/timer.cxx
index b4389fe8dbc4..7e631d1e7801 100644
--- a/vcl/source/app/timer.cxx
+++ b/vcl/source/app/timer.cxx
@@ -23,9 +23,9 @@
#include <svdata.hxx>
#include <salinst.hxx>
-#define MAX_TIMER_PERIOD ((sal_uLong)0xFFFFFFFF)
+#define MAX_TIMER_PERIOD ((sal_uInt64)0xFFFFFFFF)
-void Timer::ImplStartTimer( ImplSVData* pSVData, sal_uLong nMS )
+void Timer::ImplStartTimer( ImplSVData* pSVData, sal_uInt64 nMS )
{
if ( !nMS )
nMS = 1;
@@ -54,10 +54,10 @@ bool Timer::ReadyForSchedule( bool bTimer )
return (mpSchedulerData->mnUpdateTime + mnTimeout) <= tools::Time::GetSystemTicks();
}
-sal_uLong Timer::UpdateMinPeriod( sal_uLong nMinPeriod, sal_uLong nTime )
+sal_uInt64 Timer::UpdateMinPeriod( sal_uInt64 nMinPeriod, sal_uInt64 nTime )
{
- sal_uLong nNewTime = tools::Time::GetSystemTicks();
- sal_uLong nDeltaTime;
+ sal_uInt64 nNewTime = tools::Time::GetSystemTicks();
+ sal_uInt64 nDeltaTime;
//determine smallest time slot
if( mpSchedulerData->mnUpdateTime == nTime )
{
@@ -114,7 +114,7 @@ void Timer::Start()
Timer::ImplStartTimer( pSVData, mnTimeout );
}
-void Timer::SetTimeout( sal_uLong nNewTimeout )
+void Timer::SetTimeout( sal_uInt64 nNewTimeout )
{
mnTimeout = nNewTimeout;
// if timer is active then renew clock