diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-08-29 12:10:10 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-08-31 11:30:20 +0200 |
commit | 4b8568c9dfbcee9d547f44187eb1b72e796157aa (patch) | |
tree | fa550e0725b8afdaddc468af03b4fae52819ce9e /src/main.cpp | |
parent | 1c50442994068b8fe12ad1e92f161db0d546eef8 (diff) | |
download | mana-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.cpp | 2 |
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) |