blob: 7419c52481377be62a867288509647a3e5fd7f14 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "browsertabwidget.hpp"
#include "browsertabbar.hpp"
BrowserTabWidget::BrowserTabWidget(QWidget *parent) : QTabWidget(parent)
{
this->setTabBar(new BrowserTabBar(this));
}
|