diff options
| author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-14 18:53:48 +0200 | 
|---|---|---|
| committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-14 20:04:22 +0200 | 
| commit | 064dc13f3d88b96b1af74b5ce03917ab30131a69 (patch) | |
| tree | 84320662eda72e8f1f9e78b67811dd80b929c0d4 | |
| parent | 4e82ed46d209d05508c7af24cfe135c78ee353db (diff) | |
| download | nextpnr-064dc13f3d88b96b1af74b5ce03917ab30131a69.tar.gz nextpnr-064dc13f3d88b96b1af74b5ce03917ab30131a69.tar.bz2 nextpnr-064dc13f3d88b96b1af74b5ce03917ab30131a69.zip  | |
Cleanup
| -rw-r--r-- | gui/infotab.cc | 1 | ||||
| -rw-r--r-- | gui/infotab.h | 2 | ||||
| -rw-r--r-- | gui/mainwindow.h | 4 | ||||
| -rw-r--r-- | gui/pythontab.cc | 2 | ||||
| -rw-r--r-- | gui/pythontab.h | 4 | 
5 files changed, 6 insertions, 7 deletions
diff --git a/gui/infotab.cc b/gui/infotab.cc index 9a523d4f..0bf43b90 100644 --- a/gui/infotab.cc +++ b/gui/infotab.cc @@ -17,4 +17,3 @@ void InfoTab::info(std::string str)      plainTextEdit->insertPlainText(str.c_str());
      plainTextEdit->moveCursor(QTextCursor::End);
  }
 -
 diff --git a/gui/infotab.h b/gui/infotab.h index bf673ee6..e3c58ba5 100644 --- a/gui/infotab.h +++ b/gui/infotab.h @@ -1,8 +1,8 @@  #ifndef INFOTAB_H
  #define INFOTAB_H
 -#include "nextpnr.h"
  #include <QPlainTextEdit>
 +#include "nextpnr.h"
  // FIXME
  USING_NEXTPNR_NAMESPACE
 diff --git a/gui/mainwindow.h b/gui/mainwindow.h index f0818be4..3260da14 100644 --- a/gui/mainwindow.h +++ b/gui/mainwindow.h @@ -2,12 +2,12 @@  #define MAINWINDOW_H
  #include "emb.h"
 +#include "infotab.h"
  #include "nextpnr.h"
 +#include "pythontab.h"
  #include "qtpropertymanager.h"
  #include "qttreepropertybrowser.h"
  #include "qtvariantproperty.h"
 -#include "pythontab.h"
 -#include "infotab.h"
  #include <QMainWindow>
  #include <QPlainTextEdit>
 diff --git a/gui/pythontab.cc b/gui/pythontab.cc index 8f620958..1e827330 100644 --- a/gui/pythontab.cc +++ b/gui/pythontab.cc @@ -1,7 +1,7 @@  #include "pythontab.h"
 +#include <QGridLayout>
  #include "emb.h"
  #include "pybindings.h"
 -#include <QGridLayout>
  PythonTab::PythonTab(QWidget *parent) : QWidget(parent)
  {
 diff --git a/gui/pythontab.h b/gui/pythontab.h index f6cffcf3..4290d277 100644 --- a/gui/pythontab.h +++ b/gui/pythontab.h @@ -1,10 +1,10 @@  #ifndef PYTHONTAB_H
  #define PYTHONTAB_H
 -#include "nextpnr.h"
 -#include "emb.h"
  #include <QLineEdit>
  #include <QPlainTextEdit>
 +#include "emb.h"
 +#include "nextpnr.h"
  // FIXME
  USING_NEXTPNR_NAMESPACE
  | 
