diff --git a/.codespellrc b/.codespellrc index 6e91be1b..e7540b13 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,4 +1,4 @@ [codespell] -skip = ./build-*,.git +skip = ./build-*,.git,*.svg,rc_assets.py interactive = 3 ignore-words-list = overlay,overlayed diff --git a/src/private/FloatingWindow_p.h b/src/private/FloatingWindow_p.h index cd5b4df1..5e362b8b 100644 --- a/src/private/FloatingWindow_p.h +++ b/src/private/FloatingWindow_p.h @@ -205,7 +205,7 @@ public: ///@brief By default equivalent to QWidget::normalGeometry() /// Derived classes can implement something different here, to workaround window manager issues with Qt::Tool - /// Also useful for QtQuick to eventually perserve normal geometry uppon save/restore of a maximized window. As + /// Also useful for QtQuick to eventually preserve normal geometry upon save/restore of a maximized window. As /// QWindow has no notion of normal geometry, so we need to implement it here. /// @sa QTBUG-95478 virtual QRect normalGeometry() const; diff --git a/src/private/widgets/TabWidgetWidget.cpp b/src/private/widgets/TabWidgetWidget.cpp index 80970131..46ae56c9 100644 --- a/src/private/widgets/TabWidgetWidget.cpp +++ b/src/private/widgets/TabWidgetWidget.cpp @@ -212,7 +212,7 @@ void TabWidgetWidget::showContextMenu(QPoint pos) return; QTabBar *tabBar = QTabWidget::tabBar(); - // We dont want context menu if there is only one tab + // We don't want context menu if there is only one tab if (tabBar->count() <= 1) return; diff --git a/tests/fuzzer/Operations.cpp b/tests/fuzzer/Operations.cpp index 6e46375c..270da523 100644 --- a/tests/fuzzer/Operations.cpp +++ b/tests/fuzzer/Operations.cpp @@ -27,9 +27,9 @@ using namespace KDDockWidgets; using namespace KDDockWidgets::Testing; using namespace KDDockWidgets::Testing::Operations; -static QString operationTypeStr(OperationType ot) +static QString operationTypeStr(OperationType optype) { - return QMetaEnum::fromType().valueToKey(ot); + return QMetaEnum::fromType().valueToKey(optype); } OperationBase::OperationBase(KDDockWidgets::Testing::Operations::OperationType type, Fuzzer *fuzzer)