| 38 | #include <QTabBar> |
| 39 | |
| 40 | NotesPage::NotesPage(BaseInstance *inst, QWidget *parent) |
| 41 | : QWidget(parent), ui(new Ui::NotesPage), m_inst(inst) |
| 42 | { |
| 43 | ui->setupUi(this); |
| 44 | ui->noteEditor->setText(m_inst->notes()); |
| 45 | } |
| 46 | |
| 47 | NotesPage::~NotesPage() |
| 48 | { |