cleanup: remove TabBase::enter/exitEditMode() functions

Since the edit mode was removed, these became unnecessary.

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

View file

@ -5,15 +5,6 @@ TabBase::TabBase(QWidget *parent) : QWidget(parent)
{
}
void TabBase::updateUi(QString titleColor)
{
Q_UNUSED(titleColor)
}
void TabBase::enterEditMode()
{
}
void TabBase::exitEditMode()
void TabBase::updateUi(QString)
{
}

View file

@ -14,8 +14,6 @@ public:
virtual void updateData() = 0;
virtual void clear() = 0;
virtual void updateUi(QString titleColor);
virtual void enterEditMode();
virtual void exitEditMode();
};
#endif