summaryrefslogtreecommitdiffstats
path: root/src/qt-test.cpp
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2012-12-13 20:23:57 (GMT)
committerMark Brand <mabrand@mabrand.nl>2012-12-13 21:17:49 (GMT)
commitdad275265a77d828683b7e2fb3883c576f0e2271 (patch)
treedff2c02550ea90e4333a05231c750ba5c2c60a61 /src/qt-test.cpp
parent23df06f38b68ccf98cd0cef5b27507f0376e708e (diff)
downloadmxe-dad275265a77d828683b7e2fb3883c576f0e2271.zip
mxe-dad275265a77d828683b7e2fb3883c576f0e2271.tar.gz
mxe-dad275265a77d828683b7e2fb3883c576f0e2271.tar.bz2
package qt: clean-up and add "about Qt" to test program
Diffstat (limited to 'src/qt-test.cpp')
-rw-r--r--src/qt-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt-test.cpp b/src/qt-test.cpp
index 045ee50..83a1cb3 100644
--- a/src/qt-test.cpp
+++ b/src/qt-test.cpp
@@ -4,7 +4,6 @@
*/
#include <QApplication>
-#include <QtPlugin>
#include "ui_qt-test.h"
int main(int argc, char *argv[])
@@ -14,5 +13,6 @@ int main(int argc, char *argv[])
Ui::MainWindow u;
u.setupUi(&w);
w.show();
+ a.aboutQt();
return a.exec();
}