summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/doxywizard.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-07-28 20:14:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-07-28 20:14:48 (GMT)
commit9c8ea2e90bb38ba21675799fe364fc7a546b020c (patch)
treeeb4c65d3676c6ecd00dc532bcb6420f9eb71aa32 /addon/doxywizard/doxywizard.cpp
parenta2bf2ebcf009a45c53748f0c7f9182c017c0bcd9 (diff)
downloadDoxygen-9c8ea2e90bb38ba21675799fe364fc7a546b020c.zip
Doxygen-9c8ea2e90bb38ba21675799fe364fc7a546b020c.tar.gz
Doxygen-9c8ea2e90bb38ba21675799fe364fc7a546b020c.tar.bz2
Release-1.2.17-20020728
Diffstat (limited to 'addon/doxywizard/doxywizard.cpp')
-rw-r--r--addon/doxywizard/doxywizard.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp
index 58580b2..84f9f08 100644
--- a/addon/doxywizard/doxywizard.cpp
+++ b/addon/doxywizard/doxywizard.cpp
@@ -309,12 +309,13 @@ void Wizard::refreshCaption()
void Wizard::about()
{
- QMessageBox::about(this, "DoxyWizard",
- "<qt><center>A tool to create and edit configuration files "
- "that can be read by doxygen.</center><p>"
- "<center>Written by Dimitri van Heesch</center><p>"
- "<center>(c) 2000-2002</center></qt>"
- );
+ QCString text(4096);
+ text.sprintf( "<qt><center>A tool to create and edit configuration files "
+ "that can be read by doxygen version %s.</center><p>"
+ "<center>Written by Dimitri van Heesch</center><p>"
+ "<center>(c) 2000-2002</center></qt>",versionString
+ );
+ QMessageBox::about(this, "DoxyWizard",text);
}
//----------------------------------------------------------------------