adding a signal/slot for clearing all items

This commit is contained in:
Chris Cochrun 2023-01-27 16:44:46 -06:00
parent 1b8e8202a1
commit 441ec22542
4 changed files with 7 additions and 1 deletions

View file

@ -832,6 +832,7 @@ void ServiceItemModel::clearAll() {
for (int i = m_items.size(); i >= 0; i--) {
removeItem(i);
}
emit allRemoved();
}
bool ServiceItemModel::loadLastSaved() {