diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-26 15:47:22 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-26 15:47:43 +0200 |
commit | 0bd73c19778c9bdbc8e6d85c120715e239a9bc0d (patch) | |
tree | c269c560c2dc284a4721bea2722a73bb522e5e3e /gui/dummy/mainwindow.cc | |
parent | 6f12f2b7e8c58a0b14c6f1f3df2112b8860a6e4f (diff) | |
download | nextpnr-0bd73c19778c9bdbc8e6d85c120715e239a9bc0d.tar.gz nextpnr-0bd73c19778c9bdbc8e6d85c120715e239a9bc0d.tar.bz2 nextpnr-0bd73c19778c9bdbc8e6d85c120715e239a9bc0d.zip |
Make GUI use recreated context
Diffstat (limited to 'gui/dummy/mainwindow.cc')
-rw-r--r-- | gui/dummy/mainwindow.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/dummy/mainwindow.cc b/gui/dummy/mainwindow.cc index c57d0db0..e86edafd 100644 --- a/gui/dummy/mainwindow.cc +++ b/gui/dummy/mainwindow.cc @@ -23,11 +23,11 @@ static void initMainResource() { Q_INIT_RESOURCE(nextpnr); } NEXTPNR_NAMESPACE_BEGIN
-MainWindow::MainWindow(Context *_ctx, QWidget *parent) : BaseMainWindow(_ctx, parent)
+MainWindow::MainWindow(QWidget *parent) : BaseMainWindow(parent)
{
initMainResource();
- std::string title = "nextpnr-dummy - " + ctx->getChipName();
+ std::string title = "nextpnr-dummy - [EMPTY]";
setWindowTitle(title.c_str());
createMenu();
|