summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>2024-01-31 09:43:47 +0900
committerTasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>2024-02-06 20:17:18 +0900
commitbd6d7d4d74e34b96217388c50f14dbd0df620be6 (patch)
tree521f2f1a9dfdc13e25e2f0d51e606288cf7f047a /examples
parent8b601e6dbecdd85b77e0a7796dc3e5b908dfb5ec (diff)
Remove extra semi-colons
Change-Id: I92fddb36cd136fd1bd627955f15d0559b9942d7e Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/network/securesocketclient/sslclient.cpp2
-rw-r--r--examples/widgets/painting/shared/arthurwidgets.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/network/securesocketclient/sslclient.cpp b/examples/network/securesocketclient/sslclient.cpp
index c21feaf473..413038ddd5 100644
--- a/examples/network/securesocketclient/sslclient.cpp
+++ b/examples/network/securesocketclient/sslclient.cpp
@@ -71,7 +71,7 @@ void SslClient::socketEncrypted()
const QSslCipher cipher = socket->sessionCipher();
const QString cipherInfo = QString("%1, %2 (%3/%4)").arg(cipher.authenticationMethod())
.arg(cipher.name()).arg(cipher.usedBits())
- .arg(cipher.supportedBits());;
+ .arg(cipher.supportedBits());
form->cipherLabel->setText(cipherInfo);
padLock->show();
}
diff --git a/examples/widgets/painting/shared/arthurwidgets.h b/examples/widgets/painting/shared/arthurwidgets.h
index 79d4090c67..e508e811cb 100644
--- a/examples/widgets/painting/shared/arthurwidgets.h
+++ b/examples/widgets/painting/shared/arthurwidgets.h
@@ -46,7 +46,7 @@ protected:
bool m_showDoc = false;
bool m_preferImage = false;
- QTextDocument *m_document = nullptr;;
+ QTextDocument *m_document = nullptr;
QString m_sourceFileName;
};