From 800fdf3ba4cb1eb16a1157532bf65f28b13a8a4d Mon Sep 17 00:00:00 2001 From: giomba Date: Sat, 31 Oct 2020 22:21:27 +0100 Subject: [PATCH] fixed compile date in About window --- argento/AboutWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argento/AboutWindow.cpp b/argento/AboutWindow.cpp index c951aa0..ed4b7a7 100644 --- a/argento/AboutWindow.cpp +++ b/argento/AboutWindow.cpp @@ -21,7 +21,7 @@ AboutWindow::AboutWindow(QWidget* parent) : ") .arg(QT_VERSION_STR) .arg(GOLEM_CURRENT_COMMIT) - .arg(QDate::currentDate().toString()) + .arg(__DATE__ " " __TIME__) ); }