sw/source/core/fields/docufld.cxx |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit 96ab5f4994321c75f0fac05c5100dd09d7394a86
Author: Michael Stahl <mst...@redhat.com>
Date:   Mon Feb 2 16:53:45 2015 +0100

    tdf#88899: sw: fix expanding of SwDocInfoField with DateTime
    
    The lcl_TimeToDouble function produced very small numbers that round to
    zero.
    (regression from 9830fd36dbdb72c79703b0c61efc027fba793c5a)
    
    Change-Id: I091da9c2a913fae0c2bbf229942db3c1bd3598f4
    Reviewed-on: https://gerrit.libreoffice.org/14282
    Reviewed-by: Lionel Elie Mamane <lio...@mamane.lu>
    Tested-by: Lionel Elie Mamane <lio...@mamane.lu>

diff --git a/sw/source/core/fields/docufld.cxx 
b/sw/source/core/fields/docufld.cxx
index ec0f4e2..8d78e92 100644
--- a/sw/source/core/fields/docufld.cxx
+++ b/sw/source/core/fields/docufld.cxx
@@ -1035,7 +1035,11 @@ template<class T>
 static double lcl_TimeToDouble( const T& rTime )
 {
     const double fNanoSecondsPerDay = 86400000000000.0;
-    return 
((rTime.Hours*3600000)+(rTime.Minutes*60000)+(rTime.Seconds*1000)+(rTime.NanoSeconds))
 / fNanoSecondsPerDay;
+    return (  (rTime.Hours   * SAL_CONST_INT64(3600000000000))
+            + (rTime.Minutes * SAL_CONST_INT64(  60000000000))
+            + (rTime.Seconds * SAL_CONST_INT64(   1000000000))
+            + (rTime.NanoSeconds))
+        / fNanoSecondsPerDay;
 }
 
 template<class D>
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to