diff options
author | David Shah <davey1576@gmail.com> | 2018-06-22 13:22:19 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-22 13:22:19 +0200 |
commit | ab88bfdae137f38df0cc575405a05112b2ce4be1 (patch) | |
tree | 53171f08c9a45d3fa1ad3eec15fc37c05797bb1f /gui/designwidget.cc | |
parent | 6633441e32c99d09133e4a62c122a377a4af4ad1 (diff) | |
parent | 7f368282700172925428e45f23b8b61e0bf39f94 (diff) | |
download | nextpnr-ab88bfdae137f38df0cc575405a05112b2ce4be1.tar.gz nextpnr-ab88bfdae137f38df0cc575405a05112b2ce4be1.tar.bz2 nextpnr-ab88bfdae137f38df0cc575405a05112b2ce4be1.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'gui/designwidget.cc')
-rw-r--r-- | gui/designwidget.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/designwidget.cc b/gui/designwidget.cc index 9bb25992..7b1ce543 100644 --- a/gui/designwidget.cc +++ b/gui/designwidget.cc @@ -7,6 +7,8 @@ #include "fpgaviewwidget.h"
#include "pybindings.h"
+NEXTPNR_NAMESPACE_BEGIN
+
enum class ElementType
{
BEL,
@@ -234,3 +236,5 @@ void DesignWidget::selectObject() {
Q_EMIT info("selected " + itemContextMenu->text(0).toStdString() + "\n");
}
+
+NEXTPNR_NAMESPACE_END
|