blob: fa0a88f0671be98e84730afda78a68d7bb00664e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// SPDX-License-Identifier: GPL-2.0
#include "TabBase.h"
TabBase::TabBase(QWidget *parent) : QWidget(parent)
{
}
void TabBase::updateUi(QString titleColor)
{
Q_UNUSED(titleColor)
}
|