diff options
Diffstat (limited to 'include/salhelper/timer.hxx')
-rw-r--r-- | include/salhelper/timer.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/salhelper/timer.hxx b/include/salhelper/timer.hxx index ac2a523c4b6a..05b95564e851 100644 --- a/include/salhelper/timer.hxx +++ b/include/salhelper/timer.hxx @@ -56,11 +56,9 @@ struct TTimeValue : public TimeValue normalize(); } - TTimeValue( const TTimeValue& rTimeValue ) + TTimeValue( const TTimeValue& rTimeValue ): + TimeValue(rTimeValue) { - Seconds = rTimeValue.Seconds; - Nanosec = rTimeValue.Nanosec; - normalize(); } |