aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall-frontend/Source/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'heimdall-frontend/Source/main.cpp')
-rw-r--r--heimdall-frontend/Source/main.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/heimdall-frontend/Source/main.cpp b/heimdall-frontend/Source/main.cpp
index 41e018d..c327b63 100644
--- a/heimdall-frontend/Source/main.cpp
+++ b/heimdall-frontend/Source/main.cpp
@@ -19,17 +19,20 @@
THE SOFTWARE.*/
// Qt
-#include <QtGui/QApplication>
+#include <QApplication>
+#include <QtPlugin>
// Heimdall Frontend
#include "mainwindow.h"
+Q_IMPORT_PLUGIN (QWindowsIntegrationPlugin);
+
using namespace HeimdallFrontend;
int main(int argc, char *argv[])
{
QApplication application(argc, argv);
-
+
MainWindow window;
window.show();