diff options
author | Szymon Kłos <eszkadev@gmail.com> | 2015-08-26 11:52:42 +0200 |
---|---|---|
committer | Szymon Kłos <eszkadev@gmail.com> | 2015-08-29 12:33:19 +0200 |
commit | c879fa8e5fd7779ca242fe368cbdd70084df049b (patch) | |
tree | 437b1be1db8bf66b28f4777d625be12b54e534ae | |
parent | 808f14886c08b7140ecff06c4d65d2db8286f0b1 (diff) |
Date modified column - no seconds
Change-Id: I443d0dd691d8030ab6a0bf5e4eeded5ad73750a5
-rw-r--r-- | svtools/source/contnr/fileview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx index 1ce95e82b98d..6f7b8c4eeb5c 100644 --- a/svtools/source/contnr/fileview.cxx +++ b/svtools/source/contnr/fileview.cxx @@ -1945,7 +1945,7 @@ void SvtFileView_Impl::CreateDisplayText_Impl() const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData(); aValue += rLocaleData.getDate( (*aIt)->maModDate ); aValue += aDateSep; - aValue += rLocaleData.getTime( (*aIt)->maModDate ); + aValue += rLocaleData.getTime( (*aIt)->maModDate, false ); } (*aIt)->maDisplayText = aValue; |