summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/fileview.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/fpicker/source/office/fileview.cxx b/fpicker/source/office/fileview.cxx
index 7b5bd1d63c85..d10c67dffaef 100644
--- a/fpicker/source/office/fileview.cxx
+++ b/fpicker/source/office/fileview.cxx
@@ -1709,15 +1709,13 @@ const SortingData_Impl& SvtFileView_Impl::FolderInserted( const OUString& rURL,
pData->maType = SvFileInformationManager::GetFolderDescription( aVolInfo );
pData->maImage = SvFileInformationManager::GetFolderImageId( aVolInfo );
- OUString const aDateSep( ", " );
-
// title, type, size, date
pData->maDisplayName = ReplaceTabWithString(pData->GetTitle());
// set the date
SvtSysLocale aSysLocale;
const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
pData->maDisplayDate = rLocaleData.getDate( pData->maModDate )
- + aDateSep
+ + ", "
+ rLocaleData.getTime( pData->maModDate );
maContent.push_back( std::move(pData) );