subsurface/desktop-widgets/tab-widgets/TabBase.cpp
Berthold Stoeger 152016d293 cleanup: break out the dive-notes tab
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>
2022-03-12 18:33:32 +01:00

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()
{
}