From 70def3e14ceba6b080e9e7c17310a5fe819032f6 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Tue, 13 Sep 2022 12:12:16 -0400 Subject: [PATCH] misspellings found by codespell v2.2.1 --- src/MainWindowBase.cpp | 2 +- src/private/quick/DockWidgetInstantiator_p.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindowBase.cpp b/src/MainWindowBase.cpp index 153d220d..2a9f713b 100644 --- a/src/MainWindowBase.cpp +++ b/src/MainWindowBase.cpp @@ -702,7 +702,7 @@ bool MainWindowBase::deserialize(const LayoutSaver::MainWindow &mw) } if (d->affinities != mw.affinities) { - qWarning() << Q_FUNC_INFO << "Affinty name changed from" << d->affinities + qWarning() << Q_FUNC_INFO << "Affinity name changed from" << d->affinities << "; to" << mw.affinities; d->affinities = mw.affinities; diff --git a/src/private/quick/DockWidgetInstantiator_p.h b/src/private/quick/DockWidgetInstantiator_p.h index 2ff30fd5..80af7e86 100644 --- a/src/private/quick/DockWidgetInstantiator_p.h +++ b/src/private/quick/DockWidgetInstantiator_p.h @@ -29,7 +29,7 @@ class DockWidgetQuick; * * "DockWidget {}" in QML won't create a KDDockWidget::DockWidget directly, but instead an * DockWidgetInstantiator. DockWidgetInstantiator will then create the DockWidget instance only - * when the QML parsing ends (and all propreties are set) + * when the QML parsing ends (and all properties are set) * * This allows to pass the correct uniqueName to DockWidget's ctor. */