mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
20 lines
323 B
C++
20 lines
323 B
C++
#include "mainwindow.h"
|
|
#include "chatwidget.h"
|
|
#include "notebook.h"
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
notebook(this)
|
|
{
|
|
setCentralWidget(&this->notebook);
|
|
|
|
this->notebook.addPage();
|
|
this->notebook.addPage();
|
|
this->notebook.addPage();
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
|
|
}
|