author | andyq <andyq> | 2002-10-16 18:59:07 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-16 18:59:07 (UTC) |
commit | 5d3fda975262b1bf406415c3f27ffd71af126304 (patch) (unidiff) | |
tree | bd42d40d99ca1bea8bff37faafacbd3dcd20b9b8 | |
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 | |||
@@ -14,12 +14,13 @@ | |||
14 | * (at your option) any later version. * | 14 | * (at your option) any later version. * |
15 | * * | 15 | * * |
16 | ***************************************************************************/ | 16 | ***************************************************************************/ |
17 | 17 | ||
18 | #include <qmenubar.h> | 18 | #include <qmenubar.h> |
19 | #include <qpopupmenu.h> | 19 | #include <qpopupmenu.h> |
20 | #include <qmessagebox.h> | ||
20 | 21 | ||
21 | #include "mainwin.h" | 22 | #include "mainwin.h" |
22 | #include "datamgr.h" | 23 | #include "datamgr.h" |
23 | #include "networkpkgmgr.h" | 24 | #include "networkpkgmgr.h" |
24 | #include "settingsimpl.h" | 25 | #include "settingsimpl.h" |
25 | #include "helpwindow.h" | 26 | #include "helpwindow.h" |
@@ -78,8 +79,8 @@ void MainWindow :: displayHelp() | |||
78 | dlg->exec(); | 79 | dlg->exec(); |
79 | delete dlg; | 80 | delete dlg; |
80 | } | 81 | } |
81 | 82 | ||
82 | void MainWindow :: displayAbout() | 83 | void MainWindow :: displayAbout() |
83 | { | 84 | { |
84 | 85 | QMessageBox::about( this, "About AQPkg", VERSION_TEXT ); | |
85 | } | 86 | } |