cleanup: replace empty TabBase constructor by using directive

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2022-03-11 20:48:46 +01:00
parent a4dbe51aee
commit 63664061eb
2 changed files with 1 additions and 5 deletions

View file

@ -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);