mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
cleanup: replace empty TabBase constructor by using directive
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
a4dbe51aee
commit
63664061eb
2 changed files with 1 additions and 5 deletions
|
@ -1,10 +1,6 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "TabBase.h"
|
#include "TabBase.h"
|
||||||
|
|
||||||
TabBase::TabBase(QWidget *parent) : QWidget(parent)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void TabBase::updateUi(QString)
|
void TabBase::updateUi(QString)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ class TabBase : public QWidget {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TabBase(QWidget *parent = 0);
|
using QWidget::QWidget;
|
||||||
virtual void updateData() = 0;
|
virtual void updateData() = 0;
|
||||||
virtual void clear() = 0;
|
virtual void clear() = 0;
|
||||||
virtual void updateUi(QString titleColor);
|
virtual void updateUi(QString titleColor);
|
||||||
|
|
Loading…
Add table
Reference in a new issue