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:
Aleix Pol 2015-03-14 03:25:14 +01:00
parent 0e96d837ff
commit a4ccc93518

View file

@ -83,7 +83,7 @@ private:
void clearDevices();
DaemonDbusInterface* m_dbusInterface;
QList<DeviceDbusInterface*> m_deviceList;
QVector<DeviceDbusInterface*> m_deviceList;
StatusFlags m_displayFilter;
};