[Kst] branches/work/kst/portto4/kst/src/libkst

Nicolas Brisset nicolas.brisset at eurocopter.com
Sat Feb 5 02:22:51 CET 2011


SVN commit 1218857 by brisset:

Replace this ugly T which makes Qt::ISODate so hard to read.


 M  +2 -2      datasource.cpp  


--- branches/work/kst/portto4/kst/src/libkst/datasource.cpp #1218856:1218857
@@ -172,8 +172,8 @@
   QFileInfo info(_filename);
   map["File name"] = info.fileName();
   map["File path"] = info.path();
-  map["File creation"] = info.created().toString(Qt::ISODate);
-  map["File modification"] = info.lastModified().toString(Qt::ISODate);
+  map["File creation"] = info.created().toString(Qt::ISODate).replace("T", " ");
+  map["File modification"] = info.lastModified().toString(Qt::ISODate).replace("T", " ");
   return map;
 }
 


More information about the Kst mailing list