diff options
| author | 2008-04-20 15:08:52 +0000 | |
|---|---|---|
| committer | 2008-04-20 15:08:52 +0000 | |
| commit | 6da34205658470a4791ea0b9efcd6605dc061357 (patch) | |
| tree | b2635b18f9d7dc5bcb2dda8f4f1a8b925d44b1bd /src/modules/about/aboutdialog.cpp | |
| parent | compilation fixes (diff) | |
| download | KVIrc-6da34205658470a4791ea0b9efcd6605dc061357.tar.gz KVIrc-6da34205658470a4791ea0b9efcd6605dc061357.tar.bz2 KVIrc-6da34205658470a4791ea0b9efcd6605dc061357.zip | |
added Subversion to CMake rules;
added SVN revision number to KVIrc;
fixed compilation warning;
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1533 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/about/aboutdialog.cpp')
| -rw-r--r-- | src/modules/about/aboutdialog.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/modules/about/aboutdialog.cpp b/src/modules/about/aboutdialog.cpp index 625564f22..e5e8519b4 100644 --- a/src/modules/about/aboutdialog.cpp +++ b/src/modules/about/aboutdialog.cpp @@ -95,7 +95,7 @@ KviAboutDialog::KviAboutDialog() g->addWidget(l,0,0); - QString aboutString= "KVIrc <b>" KVI_VERSION " '" KVI_RELEASE_NAME "'</b><br>"; + QString aboutString= "<b>KVIrc " KVI_VERSION " '" KVI_RELEASE_NAME "'</b><br>"; aboutString += __tr2qs_ctx("Forged by the <b>KVIrc Development Team</b>","about"); l = new QLabel(aboutString,w); @@ -145,6 +145,10 @@ KviAboutDialog::KviAboutDialog() infoString += ": "; infoString += KviBuildInfo::buildSourcesDate(); infoString += "<br>"; + infoString += __tr2qs_ctx("Revision Number","about"); + infoString += ": "; + infoString += KviBuildInfo::buildRevision(); + infoString += "<br>"; infoString += __tr2qs_ctx("System Name","about"); infoString += ": "; infoString += KviBuildInfo::buildSystem(); |
