diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-04-10 18:36:52 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-04-10 18:36:52 (GMT) |
commit | 76e39987363c93fdd3f2d99ffdb9f87743d6af7c (patch) | |
tree | a604824ba5bbf13dd607ebd57c1a426a0d225d58 /addon | |
parent | c8be4837b6a2a96cc3e57aa941645b9dc017e8b2 (diff) | |
download | Doxygen-76e39987363c93fdd3f2d99ffdb9f87743d6af7c.zip Doxygen-76e39987363c93fdd3f2d99ffdb9f87743d6af7c.tar.gz Doxygen-76e39987363c93fdd3f2d99ffdb9f87743d6af7c.tar.bz2 |
Release-1.4.2-20050410
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxywizard/doxywizard.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp index 2d3556b..b221530 100644 --- a/addon/doxywizard/doxywizard.cpp +++ b/addon/doxywizard/doxywizard.cpp @@ -31,6 +31,7 @@ #include "doxywizard.h" #include "expert.h" #include "config.h" +#include "version.h" const int messageTimeout = 5000; //!< status bar message timeout in millisec. @@ -1310,9 +1311,9 @@ void MainWidget::about() { QString msg; QTextStream t(&msg,IO_WriteOnly); - t << "<qt><center>A tool to configure and run doxygen " - "on your source files.</center><p><br>" - "<center>Written by<br> Dimitri van Heesch<br>© 2000-2004</center><p>" + t << QString("<qt><center>A tool to configure and run doxygen version ")+versionString+ + " on your source files.</center><p><br>" + "<center>Written by<br> Dimitri van Heesch<br>© 2000-2005</center><p>" "</qt>"; QMessageBox::about(this,"Doxygen GUI",msg); } |