[Libreoffice-commits] core.git: sw/source

Miklos Vajna vmiklos at collabora.co.uk
Thu Nov 3 08:59:26 UTC 2016


 sw/source/uibase/utlui/uitool.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ea6b378221efea0392c5085d621ff38a612ade3e
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Thu Nov 3 09:16:09 2016 +0100

    tdf#102308 sw redline tooltip: show seconds
    
    Commit d9dca1eef91faa710112ffd20a2b2d36b48a9287 (tdf#102308 sw: improve
    redline timestamp precision) improved the manage changes dialog to show
    seconds of the redline timestamps, do the same with tooltips, when the
    mouse is hovered over a redline portion.
    
    Change-Id: I6ec42db49cb93d8bce0cdee02e37d871f8e7e2ce
    Reviewed-on: https://gerrit.libreoffice.org/30515
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/sw/source/uibase/utlui/uitool.cxx b/sw/source/uibase/utlui/uitool.cxx
index a6be386e0..d40e71c 100644
--- a/sw/source/uibase/utlui/uitool.cxx
+++ b/sw/source/uibase/utlui/uitool.cxx
@@ -787,7 +787,7 @@ OUString GetAppLangDateTimeString( const DateTime& rDT )
 {
     const SvtSysLocale aSysLocale;
     const LocaleDataWrapper& rAppLclData = aSysLocale.GetLocaleData();
-    OUString sRet = rAppLclData.getDate( rDT ) + " " + rAppLclData.getTime( rDT, false );
+    OUString sRet = rAppLclData.getDate( rDT ) + " " + rAppLclData.getTime( rDT );
     return sRet;
 }
 


More information about the Libreoffice-commits mailing list