diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-26 11:44:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-17 15:37:22 +0000 |
commit | b190574b6a0de3e26c6338324f74440ec0505bfb (patch) | |
tree | 04ce4fa3231bf32e7bbf7b2fe51409e5113d25ea /include/salhelper | |
parent | 3c2b80066bf2fba4e7222fb7d30ac7d412539818 (diff) |
tdf#84323: Make osl::Thread::wait more readable
Change-Id: I33eb6970050a103404344c7f16dd33349c154347
Reviewed-on: https://gerrit.libreoffice.org/15018
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/salhelper')
-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(); } |