diff options
Diffstat (limited to 'addon/doxywizard/doxywizard.cpp')
-rw-r--r-- | addon/doxywizard/doxywizard.cpp | 13 |
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); } //---------------------------------------------------------------------- |