summaryrefslogtreecommitdiff
path: root/tools/source/datetime
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-04-19 17:24:03 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-04-19 17:27:10 +0200
commit5df981a2a26106e6283a88fb27e6c6659fe1259d (patch)
treed0f89c26e0794fc26ed60c1cf65224c0728c5aca /tools/source/datetime
parent877f55490f7105e2b1a40cd4bd9860fe8be2aebf (diff)
tools ::Time: change constructor to fixed-length integers
Change-Id: I20180cda1a28f898f487aff605796077d3418be3
Diffstat (limited to 'tools/source/datetime')
-rw-r--r--tools/source/datetime/ttime.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/datetime/ttime.cxx b/tools/source/datetime/ttime.cxx
index b10d08691086..9f1241cfd76b 100644
--- a/tools/source/datetime/ttime.cxx
+++ b/tools/source/datetime/ttime.cxx
@@ -138,7 +138,7 @@ Time::Time( const Time& rTime )
nTime = rTime.nTime;
}
-Time::Time( sal_uIntPtr nHour, sal_uIntPtr nMin, sal_uIntPtr nSec, sal_uIntPtr nNanoSec )
+Time::Time( sal_uInt32 nHour, sal_uInt32 nMin, sal_uInt32 nSec, sal_uInt64 nNanoSec )
{
// normalize time
nSec += nNanoSec / nanoSecInSec;