subsurface/desktop-widgets/tab-widgets/TabBase.cpp

12 lines
184 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
#include "TabBase.h"
TabBase::TabBase(QWidget *parent) : QWidget(parent)
{
}
void TabBase::updateUi(QString titleColor)
{
Q_UNUSED(titleColor)
}