mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
slightly optimize ConnectionListModel
-avoid object copies -use some more bullet proof C++11 constructs -avoid using a QRegExp, simple string matches are faster Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
This commit is contained in:
parent
5ad52db451
commit
bf9a526d63
2 changed files with 11 additions and 9 deletions
|
|
@ -6,12 +6,12 @@
|
|||
class ConnectionListModel : public QAbstractListModel {
|
||||
Q_OBJECT
|
||||
public:
|
||||
ConnectionListModel(QObject *parent = 0);
|
||||
QVariant data(const QModelIndex &index, int role) const;
|
||||
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||||
void addAddress(const QString address);
|
||||
ConnectionListModel(QObject *parent = nullptr);
|
||||
QVariant data(const QModelIndex &index, int role) const override;
|
||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||
void addAddress(const QString &address);
|
||||
void removeAllAddresses();
|
||||
int indexOf(QString address);
|
||||
int indexOf(const QString &address) const;
|
||||
private:
|
||||
QStringList m_addresses;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue