From 5c468f0ecd6f2a4397e399d462e6ba580f467bb7 Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Tue, 11 Dec 2018 19:23:06 +0200 Subject: [PATCH] Fix minor typos --- core/backends/lan/compositeuploadjob.cpp | 2 +- core/backends/lan/lanlinkprovider.cpp | 2 +- plugins/notifications/notificationsdbusinterface.h | 2 +- plugins/sms/conversationsdbusinterface.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/backends/lan/compositeuploadjob.cpp b/core/backends/lan/compositeuploadjob.cpp index f74baebb7..874e0f2a4 100644 --- a/core/backends/lan/compositeuploadjob.cpp +++ b/core/backends/lan/compositeuploadjob.cpp @@ -54,7 +54,7 @@ bool CompositeUploadJob::isRunning() void CompositeUploadJob::start() { if (m_running) { - qCWarning(KDECONNECT_CORE) << "CompositeUploadJob::start() - allready running"; + qCWarning(KDECONNECT_CORE) << "CompositeUploadJob::start() - already running"; return; } diff --git a/core/backends/lan/lanlinkprovider.cpp b/core/backends/lan/lanlinkprovider.cpp index 5094cf6f3..ce4431b09 100644 --- a/core/backends/lan/lanlinkprovider.cpp +++ b/core/backends/lan/lanlinkprovider.cpp @@ -63,7 +63,7 @@ LanLinkProvider::LanLinkProvider(bool testMode) m_udpSocket.setProxy(QNetworkProxy::NoProxy); - //Detect when a network interface changes status, so we announce ourelves in the new network + //Detect when a network interface changes status, so we announce ourselves in the new network QNetworkConfigurationManager* networkManager = new QNetworkConfigurationManager(this); connect(networkManager, &QNetworkConfigurationManager::configurationChanged, this, &LanLinkProvider::onNetworkConfigurationChanged); diff --git a/plugins/notifications/notificationsdbusinterface.h b/plugins/notifications/notificationsdbusinterface.h index ec4af5aa6..16943285b 100644 --- a/plugins/notifications/notificationsdbusinterface.h +++ b/plugins/notifications/notificationsdbusinterface.h @@ -61,7 +61,7 @@ Q_SIGNALS: private /*methods*/: void removeNotification(const QString& internalId); - QString newId(); //Generates successive identifitiers to use as public ids + QString newId(); //Generates successive identifiers to use as public ids void notificationReady(); private /*attributes*/: diff --git a/plugins/sms/conversationsdbusinterface.h b/plugins/sms/conversationsdbusinterface.h index 014ff789f..f9c4c3c31 100644 --- a/plugins/sms/conversationsdbusinterface.h +++ b/plugins/sms/conversationsdbusinterface.h @@ -80,7 +80,7 @@ Q_SIGNALS: Q_SCRIPTABLE void conversationMessageReceived(const QVariantMap& msg, int pos); private /*methods*/: - QString newId(); //Generates successive identifitiers to use as public ids + QString newId(); //Generates successive identifiers to use as public ids private /*attributes*/: const Device* m_device;