summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authoraybuke <aybuke.147@gmail.com>2016-01-30 14:13:10 +0200
committerjan iversen <jani@documentfoundation.org>2016-02-03 07:51:40 +0000
commit2db74425208033f848ddb5bac7277d30d72afcad (patch)
tree2bc7ca09f2945f8762f3a937e98d718ad22f8de2 /sfx2
parent43799f9e21277e655c7ec940d266f775cada837a (diff)
tdf#95505 Dump usage stats to text file.
Creating file's content reformatted for csv. Change-Id: Ifefdddcae1265ad1e68e192981d6435712a9f607 Reviewed-on: https://gerrit.libreoffice.org/21920 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/control/unoctitm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index 78bd16085d8c..9fa0887b75b0 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -667,7 +667,7 @@ void UsageInfo::save()
if( file.open(osl_File_OpenFlag_Read | osl_File_OpenFlag_Write | osl_File_OpenFlag_Create) == osl::File::E_None )
{
- OString aUsageInfoMsg = "Document Type,Command,Count";
+ OString aUsageInfoMsg = "Document Type;Command;Count";
for (UsageMap::const_iterator it = maUsage.begin(); it != maUsage.end(); ++it)
aUsageInfoMsg += "\n" + it->first.toUtf8() + ";" + OString::number(it->second);