From 8b8863b6407f4c80bfb3f4a51ea8eeeedf7f0ab5 Mon Sep 17 00:00:00 2001 From: Jan Mulder Date: Wed, 11 Oct 2017 19:31:45 +0200 Subject: Add function to clear connectionModel data Preparation primarily for mobile. When we want to switch in one session from BT to cable connection and vise versa, we need a way to clear the model data containing the possible connections in use. Signed-off-by: Jan Mulder --- core/connectionlistmodel.cpp | 7 +++++++ core/connectionlistmodel.h | 1 + 2 files changed, 8 insertions(+) diff --git a/core/connectionlistmodel.cpp b/core/connectionlistmodel.cpp index 3e1e0d71c..7f8b9894b 100644 --- a/core/connectionlistmodel.cpp +++ b/core/connectionlistmodel.cpp @@ -42,3 +42,10 @@ void ConnectionListModel::addAddress(const QString address) m_addresses.append(address); endInsertRows(); } + +void ConnectionListModel::removeAllAddresses() +{ + beginRemoveRows(QModelIndex(), 0, rowCount()); + m_addresses.clear(); + endRemoveRows(); +} diff --git a/core/connectionlistmodel.h b/core/connectionlistmodel.h index ec3a785fa..b7b1db5c9 100644 --- a/core/connectionlistmodel.h +++ b/core/connectionlistmodel.h @@ -15,6 +15,7 @@ public: QString address(int idx) const; int rowCount(const QModelIndex &parent = QModelIndex()) const; void addAddress(const QString address); + void removeAllAddresses(); private: QStringList m_addresses; }; -- cgit v1.2.3-70-g09d2