aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall-frontend/Source/main.cpp
diff options
context:
space:
mode:
authorBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2015-02-19 02:51:00 +1100
committerBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2015-02-19 04:13:26 +1100
commit39b48f2357b0b783815be88031b738376fa228e0 (patch)
treef2fca0b77a29e5df49425a5c132416d14fa3b938 /heimdall-frontend/Source/main.cpp
parent09ba1839225ea6adcba65ebec2f3a783edd6647d (diff)
downloadexternal_heimdall-39b48f2357b0b783815be88031b738376fa228e0.zip
external_heimdall-39b48f2357b0b783815be88031b738376fa228e0.tar.gz
external_heimdall-39b48f2357b0b783815be88031b738376fa228e0.tar.bz2
Upgrade Heimdall Frontend to Qt5 and build with cmake
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();