diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2018-08-08 09:18:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 09:18:03 -0700 |
commit | 330bb86bfcfd0e1727c6e786f41b1f4c2440cac4 (patch) | |
tree | ea6a0c6531aed19796cfa6ab50a24fb1408ad72f /gui/generic | |
parent | 8553573d2485ac2ec60d1c49949c254e02d35490 (diff) | |
parent | fc5cee6fb896bc4d7a8b79dcde789e03c787bd89 (diff) | |
download | nextpnr-330bb86bfcfd0e1727c6e786f41b1f4c2440cac4.tar.gz nextpnr-330bb86bfcfd0e1727c6e786f41b1f4c2440cac4.tar.bz2 nextpnr-330bb86bfcfd0e1727c6e786f41b1f4c2440cac4.zip |
Merge pull request #43 from YosysHQ/common_main
Common main and project
Diffstat (limited to 'gui/generic')
-rw-r--r-- | gui/generic/mainwindow.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/generic/mainwindow.cc b/gui/generic/mainwindow.cc index 050c0fb8..01eeb4ef 100644 --- a/gui/generic/mainwindow.cc +++ b/gui/generic/mainwindow.cc @@ -23,7 +23,8 @@ static void initMainResource() { Q_INIT_RESOURCE(nextpnr); } NEXTPNR_NAMESPACE_BEGIN
-MainWindow::MainWindow(std::unique_ptr<Context> context, ArchArgs args, QWidget *parent) : BaseMainWindow(std::move(context), args, parent)
+MainWindow::MainWindow(std::unique_ptr<Context> context, ArchArgs args, QWidget *parent)
+ : BaseMainWindow(std::move(context), args, parent)
{
initMainResource();
|