Make the devices list a vector
It's the suggested data type to use according to: https://marcmutz.wordpress.com/effective-qt/containers/
This commit is contained in:
parent
0e96d837ff
commit
a4ccc93518
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ private:
|
||||||
void clearDevices();
|
void clearDevices();
|
||||||
|
|
||||||
DaemonDbusInterface* m_dbusInterface;
|
DaemonDbusInterface* m_dbusInterface;
|
||||||
QList<DeviceDbusInterface*> m_deviceList;
|
QVector<DeviceDbusInterface*> m_deviceList;
|
||||||
StatusFlags m_displayFilter;
|
StatusFlags m_displayFilter;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue