mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +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
|
||||
#include "TabBase.h"
|
||||
|
||||
TabBase::TabBase(QWidget *parent) : QWidget(parent)
|
||||
{
|
||||
}
|
||||
|
||||
void TabBase::updateUi(QString)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ class TabBase : public QWidget {
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
TabBase(QWidget *parent = 0);
|
||||
using QWidget::QWidget;
|
||||
virtual void updateData() = 0;
|
||||
virtual void clear() = 0;
|
||||
virtual void updateUi(QString titleColor);
|
||||
|
|
Loading…
Reference in a new issue