mirror-chatterino2/notebookpage.cpp

10 lines
180 B
C++
Raw Normal View History

2016-12-29 17:31:07 +01:00
#include "QWidget"
#include "notebookpage.h"
2016-12-30 12:20:26 +01:00
#include "notebooktab.h"
2016-12-29 17:31:07 +01:00
2016-12-30 12:20:26 +01:00
NotebookPage::NotebookPage(QWidget *parent, NotebookTab *tab)
2016-12-29 17:31:07 +01:00
: QWidget(parent)
{
2016-12-30 12:20:26 +01:00
this->tab = tab;
2016-12-29 17:31:07 +01:00
}