aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/browsertabwidget.cpp
blob: 9a6ee94365495a26a48226b1dfd33f6d2e9c213e (plain) (blame)
1
2
3
4
5
6
7
#include "browsertabwidget.hpp"

BrowserTabWidget::BrowserTabWidget(QWidget *parent) : QTabWidget(parent)
{
    this->tab_bar = new BrowserTabBar(this);
    this->setTabBar(this->tab_bar);
}