aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config/verstr.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-31 22:28:26 -0700
committerChris Robinson <[email protected]>2019-08-31 22:28:26 -0700
commita15f25b07ad442890bb9a75a7ef7f43cf5ab2ef4 (patch)
tree6cab001b7aa074a0edbd7b3aa4fd04827fb5feed /utils/alsoft-config/verstr.cpp
parent5becf4bb73ffc448dbad5ba6dd9377f3c8ab8697 (diff)
Return a QString from GetVersionString
Diffstat (limited to 'utils/alsoft-config/verstr.cpp')
-rw-r--r--utils/alsoft-config/verstr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/alsoft-config/verstr.cpp b/utils/alsoft-config/verstr.cpp
index b2fd0a17..42b1aeac 100644
--- a/utils/alsoft-config/verstr.cpp
+++ b/utils/alsoft-config/verstr.cpp
@@ -4,7 +4,7 @@
#include "version.h"
-const char *GetVersionString()
+QString GetVersionString()
{
- return ALSOFT_VERSION "-" ALSOFT_GIT_COMMIT_HASH " (" ALSOFT_GIT_BRANCH " branch).";
+ return QStringLiteral(ALSOFT_VERSION "-" ALSOFT_GIT_COMMIT_HASH " (" ALSOFT_GIT_BRANCH " branch).");
}