aboutsummaryrefslogtreecommitdiffstats
path: root/dummy/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dummy/main.cc')
-rw-r--r--dummy/main.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/dummy/main.cc b/dummy/main.cc
index 110c5b6c..fa1259d4 100644
--- a/dummy/main.cc
+++ b/dummy/main.cc
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -22,6 +22,7 @@
#include <QApplication>
#include <boost/filesystem/convenience.hpp>
#include <boost/program_options.hpp>
+#include "application.h"
#include "log.h"
#include "mainwindow.h"
#include "nextpnr.h"
@@ -107,7 +108,7 @@ int main(int argc, char *argv[])
}
if (vm.count("gui")) {
- QApplication a(argc, argv);
+ Application a(argc, argv);
MainWindow w(&ctx);
w.show();