diff options
author | Slávek Banko <[email protected]> | 2019-02-03 04:09:48 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-02-03 04:09:48 +0100 |
commit | 78fc4fc82bd73201117c43634b396a1bf75c417f (patch) | |
tree | e5662ae14c5052d54acf7070d960584d22504bfa | |
parent | ffbcad84f2d75202fea218e81bb9028b2a35e9c4 (diff) | |
download | kshutdown-78fc4fc82bd73201117c43634b396a1bf75c417f.tar.gz kshutdown-78fc4fc82bd73201117c43634b396a1bf75c417f.zip |
Better solution for previous commit is used.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | kshutdown/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kshutdown/main.cpp b/kshutdown/main.cpp index aa9a1bf..48fcba3 100644 --- a/kshutdown/main.cpp +++ b/kshutdown/main.cpp @@ -34,12 +34,12 @@ // 0.1.x, 0.3.x, etc - Unstable, Beta // 0.2.x, 0.4.x, etc - Stable -TQString version = "1.0.4"; +const char* version = "1.0.4"; TDEAboutData aboutData( "kshutdown", // internal name "KShutDown", // full name - version.utf8(), + version, I18N_NOOP("A Shut Down Utility for TDE"), // description TDEAboutData::License_GPL_V2, // license "(C) 2003-3000 Konrad Twardowski", // copyright |