-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added display of subversion revision in about dialog (can be switched…
… off for release by uncommenting it in mmapper2.pro) git-svn-id: svn://svn.code.sf.net/p/mmapper/code/trunk/mmapper@98 14c008a5-6e10-0410-bf79-c100e0f1932b
- Loading branch information
alve
committed
Oct 13, 2006
1 parent
1694c7b
commit 13e1458
Showing
2 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -843,8 +843,13 @@ bool MainWindow::saveAs() | |
|
||
void MainWindow::about() | ||
{ | ||
QMessageBox::about(this, tr("About MMapper2 v 2.0.2"), | ||
tr("The <b>MMapper2</b> application is specially designed " | ||
#ifdef SVN_REVISION | ||
QString version = tr("<b>MMapper2 Subversion Revision ") + QString::number(SVN_REVISION) + tr("</b><br><br>"); | ||
#else | ||
QString version = tr("<b>MMapper2 Release 2.0.2</b><br><br>"); | ||
#endif | ||
QMessageBox::about(this, tr("About MMapper2"), version + | ||
tr("The MMapper2 application is specially designed " | ||
"for MUME (fire.pvv.org:4242)<br><br>" | ||
"Author: Caligor ([email protected])<br><br>" | ||
"Special thanks to:<br>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters