misspellings found by codespell v2.2.1

This commit is contained in:
Allen Winter
2022-09-13 12:12:16 -04:00
parent a91aa74d52
commit 70def3e14c
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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.
*/