summaryrefslogtreecommitdiffstats
path: root/src/mqtt/qmqttclient.cpp
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@qt.io>2017-11-13 10:44:33 +0100
committerMaurice Kalinowski <maurice.kalinowski@qt.io>2017-11-14 07:21:22 +0000
commit6a6acf7edf4298a87bfab84754f99869abc23c72 (patch)
treeb48ff7146456589de9cdf04e25f5cd964b91b27d /src/mqtt/qmqttclient.cpp
parent70b7ee03c5825d278d8286c6924234b97d8948d2 (diff)
Clean up
Second argument is superfluous in this case. Change-Id: Id0b5444741375000929d26ea8567ba85b33f2ba7 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src/mqtt/qmqttclient.cpp')
-rw-r--r--src/mqtt/qmqttclient.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mqtt/qmqttclient.cpp b/src/mqtt/qmqttclient.cpp
index 6f5dfa8..c61e32e 100644
--- a/src/mqtt/qmqttclient.cpp
+++ b/src/mqtt/qmqttclient.cpp
@@ -675,9 +675,9 @@ QMqttClientPrivate::QMqttClientPrivate(QMqttClient *c)
{
m_client = c;
m_clientId = QUuid::createUuid().toString();
- m_clientId.remove(QLatin1Char('{'), Qt::CaseInsensitive);
- m_clientId.remove(QLatin1Char('}'), Qt::CaseInsensitive);
- m_clientId.remove(QLatin1Char('-'), Qt::CaseInsensitive);
+ m_clientId.remove(QLatin1Char('{'));
+ m_clientId.remove(QLatin1Char('}'));
+ m_clientId.remove(QLatin1Char('-'));
m_clientId.resize(23);
}