aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-07-17 15:48:09 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-07-17 15:48:09 +0200
commit5f64291ee14fb02caa0ff80a2e6ec6b52890357e (patch)
tree438fe4a24fa969cb73482b3a13f43b919eaeb688
parentb52269bc198eb8fcc647100d4891379b7fd7346a (diff)
downloadnextpnr-5f64291ee14fb02caa0ff80a2e6ec6b52890357e.tar.gz
nextpnr-5f64291ee14fb02caa0ff80a2e6ec6b52890357e.tar.bz2
nextpnr-5f64291ee14fb02caa0ff80a2e6ec6b52890357e.zip
remove non working code
-rw-r--r--gui/yosystab.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/yosystab.cc b/gui/yosystab.cc
index fba2362d..d83b969e 100644
--- a/gui/yosystab.cc
+++ b/gui/yosystab.cc
@@ -61,6 +61,7 @@ YosysTab::YosysTab(QString folder, QWidget *parent) : QWidget(parent)
connect(process, SIGNAL(readyReadStandardError()), this, SLOT(onReadyReadStandardError()));
connect(process, SIGNAL(readyReadStandardOutput()), this, SLOT(onReadyReadStandardOutput()));
connect(process, &QProcess::started, this, [this] { lineEdit->setEnabled(true); });
+/*
#if QT_VERSION < QT_VERSION_CHECK(5, 6, 0)
connect(process, &QProcess::error, this, [this](QProcess::ProcessError error) {
#else
@@ -73,6 +74,7 @@ YosysTab::YosysTab(QString folder, QWidget *parent) : QWidget(parent)
Q_EMIT deleteLater();
}
});
+*/
process->setWorkingDirectory(folder);
process->start("yosys");
}