1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-01-11 13:18:13 +03:00

update layoutstable remove function

This commit is contained in:
Michail Vourlakos 2020-08-17 14:45:54 +03:00
parent 188aa10b40
commit 519decb85c
2 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ void LayoutsTable::clear()
m_layouts.clear();
}
void LayoutsTable::removeLayout(const QString &id)
void LayoutsTable::remove(const QString &id)
{
const int pos = indexOf(id);

View File

@ -67,7 +67,7 @@ public:
void clear();
void remove(const int &row);
void removeLayout(const QString &id);
void remove(const QString &id);
void setLayoutForFreeActivities(const QString &id);
protected: