summaryrefslogtreecommitdiffstats
path: root/examples/knx/knxeditor/localdevicemanagement.h
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2020-06-26 10:25:00 +0200
committerKarsten Heimrich <karsten.heimrich@qt.io>2020-06-26 14:35:27 +0200
commit16222defb0e653c0fa432dc95fb0c3f2e9c7c905 (patch)
tree73ba917a3ad3f1b3d61c65614fdf549e6624adb1 /examples/knx/knxeditor/localdevicemanagement.h
parent6ae295c3bc4f0c16c4f0ffad995e416117abf377 (diff)
Qt6: Use QList instead of QVector
Task-number: QTBUG-84469 Change-Id: Id66666566358282eae6e3b9349fd86d03c960453 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'examples/knx/knxeditor/localdevicemanagement.h')
-rw-r--r--examples/knx/knxeditor/localdevicemanagement.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/knx/knxeditor/localdevicemanagement.h b/examples/knx/knxeditor/localdevicemanagement.h
index 195023f..2548f37 100644
--- a/examples/knx/knxeditor/localdevicemanagement.h
+++ b/examples/knx/knxeditor/localdevicemanagement.h
@@ -78,7 +78,7 @@ public:
void setLocalAddress(const QHostAddress &address);
void setKnxNetIpServer(const QKnxNetIpServerInfo &server);
void setTcpEnable(bool value);
- void onKeyringChanged(const QVector<QKnxNetIpSecureConfiguration> &configs);
+ void onKeyringChanged(const QList<QKnxNetIpSecureConfiguration> &configs);
public slots:
void clearLogging();
@@ -112,7 +112,7 @@ private:
QKnxNetIpServerInfo m_server;
QKnxNetIpDeviceManagement m_management;
QKnxNetIp::HostProtocol m_proto { QKnxNetIp::HostProtocol::UDP_IPv4 };
- QVector<QKnxNetIpSecureConfiguration> m_configs;
+ QList<QKnxNetIpSecureConfiguration> m_configs;
};
#endif