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