summaryrefslogtreecommitdiffstats
path: root/examples/knx/knxeditor
diff options
context:
space:
mode:
Diffstat (limited to 'examples/knx/knxeditor')
-rw-r--r--examples/knx/knxeditor/localdevicemanagement.cpp2
-rw-r--r--examples/knx/knxeditor/localdevicemanagement.h4
-rw-r--r--examples/knx/knxeditor/tunneling.cpp2
-rw-r--r--examples/knx/knxeditor/tunneling.h4
-rw-r--r--examples/knx/knxeditor/tunnelingfeatures.cpp2
-rw-r--r--examples/knx/knxeditor/tunnelingfeatures.h4
6 files changed, 9 insertions, 9 deletions
diff --git a/examples/knx/knxeditor/localdevicemanagement.cpp b/examples/knx/knxeditor/localdevicemanagement.cpp
index f0bdc10..e166560 100644
--- a/examples/knx/knxeditor/localdevicemanagement.cpp
+++ b/examples/knx/knxeditor/localdevicemanagement.cpp
@@ -292,7 +292,7 @@ void LocalDeviceManagement::on_manualInput_clicked(bool checked)
}
}
-void LocalDeviceManagement::onKeyringChanged(const QVector<QKnxNetIpSecureConfiguration> &configs)
+void LocalDeviceManagement::onKeyringChanged(const QList<QKnxNetIpSecureConfiguration> &configs)
{
m_configs = configs;
updateSecureConfigCombo();
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
diff --git a/examples/knx/knxeditor/tunneling.cpp b/examples/knx/knxeditor/tunneling.cpp
index 604fe60..5b89b00 100644
--- a/examples/knx/knxeditor/tunneling.cpp
+++ b/examples/knx/knxeditor/tunneling.cpp
@@ -344,7 +344,7 @@ void Tunneling::on_manualInput_clicked(bool checked)
ui->cemiFrame->setFocus();
}
-void Tunneling::onKeyringChanged(const QVector<QKnxNetIpSecureConfiguration> &configs)
+void Tunneling::onKeyringChanged(const QList<QKnxNetIpSecureConfiguration> &configs)
{
m_configs = configs;
updateSecureConfigCombo();
diff --git a/examples/knx/knxeditor/tunneling.h b/examples/knx/knxeditor/tunneling.h
index c95e41b..4d25f97 100644
--- a/examples/knx/knxeditor/tunneling.h
+++ b/examples/knx/knxeditor/tunneling.h
@@ -94,7 +94,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();
@@ -121,7 +121,7 @@ private:
QKnxNetIpTunnel m_tunnel;
QKnxNetIpServerInfo m_server;
QKnxNetIp::HostProtocol m_proto { QKnxNetIp::HostProtocol::UDP_IPv4 };
- QVector<QKnxNetIpSecureConfiguration> m_configs;
+ QList<QKnxNetIpSecureConfiguration> m_configs;
};
diff --git a/examples/knx/knxeditor/tunnelingfeatures.cpp b/examples/knx/knxeditor/tunnelingfeatures.cpp
index dedec6d..ef233ee 100644
--- a/examples/knx/knxeditor/tunnelingfeatures.cpp
+++ b/examples/knx/knxeditor/tunnelingfeatures.cpp
@@ -279,7 +279,7 @@ void TunnelingFeatures::setTcpEnable(bool value)
m_protocol = (value ? QKnxNetIp::HostProtocol::TCP_IPv4 : QKnxNetIp::HostProtocol::UDP_IPv4);
}
-void TunnelingFeatures::onKeyringChanged(const QVector<QKnxNetIpSecureConfiguration> &configs)
+void TunnelingFeatures::onKeyringChanged(const QList<QKnxNetIpSecureConfiguration> &configs)
{
m_configs = configs;
updateSecureConfigCombo();
diff --git a/examples/knx/knxeditor/tunnelingfeatures.h b/examples/knx/knxeditor/tunnelingfeatures.h
index 162497e..9e22f3a 100644
--- a/examples/knx/knxeditor/tunnelingfeatures.h
+++ b/examples/knx/knxeditor/tunnelingfeatures.h
@@ -53,7 +53,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);
private:
void checkFeatureValue();
@@ -66,7 +66,7 @@ private:
QKnxNetIpTunnel m_tunnel;
QKnxNetIp::HostProtocol m_protocol = { QKnxNetIp::HostProtocol::UDP_IPv4 };
- QVector<QKnxNetIpSecureConfiguration> m_configs;
+ QList<QKnxNetIpSecureConfiguration> m_configs;
};
#endif // TUNNELINGFEATURES_H