summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-08-29 12:10:10 +0200
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-08-31 11:30:20 +0200
commit4b8568c9dfbcee9d547f44187eb1b72e796157aa (patch)
treefa550e0725b8afdaddc468af03b4fae52819ce9e /src/main.cpp
parent1c50442994068b8fe12ad1e92f161db0d546eef8 (diff)
downloadmana-4b8568c9dfbcee9d547f44187eb1b72e796157aa.tar.gz
mana-4b8568c9dfbcee9d547f44187eb1b72e796157aa.tar.bz2
mana-4b8568c9dfbcee9d547f44187eb1b72e796157aa.tar.xz
mana-4b8568c9dfbcee9d547f44187eb1b72e796157aa.zip
Display "Mana" as part of the version in Setup window
This was already done in the log, when responding to the --version parameter and for the label on the Desktop widget, but not in the Setup window. Now it is consistently part of the FULL_VERSION define.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 935f2d89..b27152e5 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -77,7 +77,7 @@ static void printHelp()
static void printVersion()
{
- std::cout << strprintf("Mana client %s", FULL_VERSION) << std::endl;
+ std::cout << strprintf("%s", FULL_VERSION) << std::endl;
}
static void parseOptions(int argc, char *argv[], Client::Options &options)