mirror-chatterino2/mainwindow.cpp

20 lines
323 B
C++
Raw Normal View History

2016-12-29 17:31:07 +01:00
#include "mainwindow.h"
#include "chatwidget.h"
2016-12-30 12:20:26 +01:00
#include "notebook.h"
2016-12-29 17:31:07 +01:00
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
2016-12-30 12:20:26 +01:00
notebook(this)
2016-12-29 17:31:07 +01:00
{
2016-12-30 12:20:26 +01:00
setCentralWidget(&this->notebook);
this->notebook.addPage();
this->notebook.addPage();
this->notebook.addPage();
2016-12-29 17:31:07 +01:00
}
MainWindow::~MainWindow()
{
2016-12-30 12:46:03 +01:00
2016-12-29 17:31:07 +01:00
}