author | andyq <andyq> | 2002-10-16 18:59:07 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-16 18:59:07 (UTC) |
commit | 5d3fda975262b1bf406415c3f27ffd71af126304 (patch) (side-by-side diff) | |
tree | bd42d40d99ca1bea8bff37faafacbd3dcd20b9b8 /noncore/settings/aqpkg | |
parent | 0feff4043ce813c63e501d6bbd3114e7fcfd8ce6 (diff) | |
download | opie-5d3fda975262b1bf406415c3f27ffd71af126304.zip opie-5d3fda975262b1bf406415c3f27ffd71af126304.tar.gz opie-5d3fda975262b1bf406415c3f27ffd71af126304.tar.bz2 |
Now displays an about box (only the version is shown)
-rw-r--r-- | noncore/settings/aqpkg/mainwin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp index 5de4dc9..206d11c 100644 --- a/noncore/settings/aqpkg/mainwin.cpp +++ b/noncore/settings/aqpkg/mainwin.cpp @@ -17,6 +17,7 @@ #include <qmenubar.h>
#include <qpopupmenu.h>
+#include <qmessagebox.h>
#include "mainwin.h"
#include "datamgr.h"
@@ -81,5 +82,5 @@ void MainWindow :: displayHelp() void MainWindow :: displayAbout()
{
-
+ QMessageBox::about( this, "About AQPkg", VERSION_TEXT );
}
|