various - spelling fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
[codespell]
|
||||
skip = ./build-*,.git
|
||||
skip = ./build-*,.git,*.svg,rc_assets.py
|
||||
interactive = 3
|
||||
ignore-words-list = overlay,overlayed
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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<OperationType>().valueToKey(ot);
|
||||
return QMetaEnum::fromType<OperationType>().valueToKey(optype);
|
||||
}
|
||||
|
||||
OperationBase::OperationBase(KDDockWidgets::Testing::Operations::OperationType type, Fuzzer *fuzzer)
|
||||
|
||||
Reference in New Issue
Block a user