summaryrefslogtreecommitdiff
path: root/tests/guiapp/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/guiapp/main.cpp')
-rw-r--r--tests/guiapp/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/guiapp/main.cpp b/tests/guiapp/main.cpp
index 0f3e020..494c410 100644
--- a/tests/guiapp/main.cpp
+++ b/tests/guiapp/main.cpp
@@ -1,11 +1,11 @@
#include <QtGui/QApplication>
-#include "mainwidget.h"
+#include "maindialog.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
- MainWidget w;
- w.show();
+ MainDialog dlg;
+ dlg.show();
return a.exec();
}