diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-19 17:24:03 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-19 17:27:10 +0200 |
commit | 5df981a2a26106e6283a88fb27e6c6659fe1259d (patch) | |
tree | d0f89c26e0794fc26ed60c1cf65224c0728c5aca /tools/inc | |
parent | 877f55490f7105e2b1a40cd4bd9860fe8be2aebf (diff) |
tools ::Time: change constructor to fixed-length integers
Change-Id: I20180cda1a28f898f487aff605796077d3418be3
Diffstat (limited to 'tools/inc')
-rw-r--r-- | tools/inc/tools/time.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/inc/tools/time.hxx b/tools/inc/tools/time.hxx index 6a52f2678013..64751af42284 100644 --- a/tools/inc/tools/time.hxx +++ b/tools/inc/tools/time.hxx @@ -66,8 +66,8 @@ public: Time( const ResId & rResId ); Time( sal_Int64 _nTime ) { Time::nTime = _nTime; } Time( const Time& rTime ); - Time( sal_uIntPtr nHour, sal_uIntPtr nMin, - sal_uIntPtr nSec = 0, sal_uIntPtr nNanoSec = 0 ); + Time( sal_uInt32 nHour, sal_uInt32 nMin, + sal_uInt32 nSec = 0, sal_uInt64 nNanoSec = 0 ); void SetTime( sal_Int64 nNewTime ) { nTime = nNewTime; } sal_Int64 GetTime() const { return nTime; } |