Fix QDateTime format string - yyyy not YYYY

This commit is contained in:
baldurk
2016-11-14 15:18:43 +01:00
parent c39fe4a6c0
commit 7161891d2d
+1 -1
View File
@@ -519,7 +519,7 @@ QString LiveCapture::MakeText(CaptureLog *log)
text += " (Remote)";
text += "\n" + log->api;
text += "\n" + log->timestamp.toString("YYYY-MM-dd HH:mm:ss");
text += "\n" + log->timestamp.toString("yyyy-MM-dd HH:mm:ss");
return text;
}