diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-11-03 09:16:09 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-11-03 08:58:59 +0000 |
commit | ea6b378221efea0392c5085d621ff38a612ade3e (patch) | |
tree | d31f1225bb6a058948a30c61ddcd13760a064498 /sw/source/uibase | |
parent | 4a83464f718ba8534a738178670077d5636ad051 (diff) |
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@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/source/uibase')
-rw-r--r-- | sw/source/uibase/utlui/uitool.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/utlui/uitool.cxx b/sw/source/uibase/utlui/uitool.cxx index a6be386e0be0..d40e71ce6fa7 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; } |