mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
There was always this weird asymmetry that the "maintab" widget is one of the tabs itself, whereas the additional tabs were treated as extra-widgets. Turn the first tab into explicit source files to make the distinction between container and content clear. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
19 lines
253 B
C++
19 lines
253 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "TabBase.h"
|
|
|
|
TabBase::TabBase(QWidget *parent) : QWidget(parent)
|
|
{
|
|
}
|
|
|
|
void TabBase::updateUi(QString titleColor)
|
|
{
|
|
Q_UNUSED(titleColor)
|
|
}
|
|
|
|
void TabBase::enterEditMode()
|
|
{
|
|
}
|
|
|
|
void TabBase::exitEditMode()
|
|
{
|
|
}
|