diff options
| author | 2008-04-12 15:38:57 +0000 | |
|---|---|---|
| committer | 2008-04-12 15:38:57 +0000 | |
| commit | 49542b5d200b53ece6494089dc1b788cd4c03ad1 (patch) | |
| tree | ee2692320ce6f22dd8b275bebfbeb5eebe267760 /src/modules/about/aboutdialog.cpp | |
| parent | added info tab to about module, need more work (diff) | |
| download | KVIrc-49542b5d200b53ece6494089dc1b788cd4c03ad1.tar.gz KVIrc-49542b5d200b53ece6494089dc1b788cd4c03ad1.tar.bz2 KVIrc-49542b5d200b53ece6494089dc1b788cd4c03ad1.zip | |
more work on about module
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1463 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/about/aboutdialog.cpp')
| -rw-r--r-- | src/modules/about/aboutdialog.cpp | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/src/modules/about/aboutdialog.cpp b/src/modules/about/aboutdialog.cpp index 67176d4cc..21a790fa3 100644 --- a/src/modules/about/aboutdialog.cpp +++ b/src/modules/about/aboutdialog.cpp @@ -111,17 +111,23 @@ KviAboutDialog::KviAboutDialog() g->addWidget(v,0,0); // Get info - QString infoString = __tr2qs_ctx("Sources date","about"); - infoString += ": "; - infoString += KVI_SOURCES_DATE; - infoString += "<br>"; - infoString += __tr2qs_ctx("Build date","about"); - infoString += ": "; - infoString += KVI_BUILD_DATE; - infoString += "<br>"; - infoString += __tr2qs_ctx("Build flags","about"); - infoString += ": "; - infoString += KVI_BUILD_FLAGS; + QString infoString = "KVIrc <b>" KVI_VERSION " '" KVI_RELEASE_NAME "'</b><br><br>"; + infoString += __tr2qs_ctx("System Name","about"); + infoString += ": " KVI_BUILD_SYSTEM "<br>"; + infoString += __tr2qs_ctx("CPU Name","about"); + infoString += ": " KVI_BUILD_CPU "<br>"; + infoString += __tr2qs_ctx("Sources Date","about"); + infoString += ": " KVI_SOURCES_DATE "<br>"; + infoString += __tr2qs_ctx("Build Date","about"); + infoString += ": " KVI_BUILD_DATE "<br>"; + infoString += __tr2qs_ctx("Build Command","about"); + infoString += ": " KVI_BUILD_COMMAND "<br>"; + infoString += __tr2qs_ctx("Build Flags","about"); + infoString += ": " KVI_BUILD_FLAGS; + infoString += __tr2qs_ctx("Compiler Name","about"); + infoString += ": " KVI_BUILD_COMPILER "<br>"; + infoString += __tr2qs_ctx("Compiler Flags","about"); + infoString += ": " KVI_BUILD_COMPILER_FLAGS; v->setText(infoString); |
