Fix various typos

Found via `codespell -q 3 -S *.desktop,*.xml`
This commit is contained in:
luz paz 2021-12-06 07:59:23 -05:00
parent 73e919a4f3
commit fde79c09cb
13 changed files with 17 additions and 17 deletions

View file

@ -57,7 +57,7 @@ public:
* This method should preferably only be called when:
* - Split view is activated in the active tab
* OR
* - A switch to a tab that is already in split view mode is occuring
* - A switch to a tab that is already in split view mode is occurring
*/
void createSecondaryUrlNavigator();
@ -92,7 +92,7 @@ protected:
* this method always returns the same widget and reparents it.
* You normally don't have to use this method directly because
* QWidgetAction::requestWidget() is used to obtain the navigatorsWidget
* and to steal it from whereever it was prior.
* and to steal it from wherever it was prior.
* @param parent the new parent of the navigatorsWidget.
*/
QWidget *createWidget(QWidget *parent) override;

View file

@ -46,7 +46,7 @@ public:
*
* @param enabled If true, creates a secondary viewContainer in this tab.
* Otherwise deletes it.
* @param animated Decides wether the effects of this method call should
* @param animated Decides whether the effects of this method call should
* happen instantly or be transitioned to smoothly.
* @param secondaryUrl If \p enabled is true, the new viewContainer will be opened at this
* parameter. The default value will set the Url of the new viewContainer

View file

@ -41,7 +41,7 @@ public Q_SLOTS:
private:
/**
* @return wether the places selector of DolphinUrlNavigators should be visible.
* @return whether the places selector of DolphinUrlNavigators should be visible.
*/
static bool placesSelectorVisible();

View file

@ -126,7 +126,7 @@ public:
void connectUrlNavigator(DolphinUrlNavigator *urlNavigator);
/**
* Disconnects the navigator that is currently controling the view.
* Disconnects the navigator that is currently controlling the view.
* This method completely reverses connectUrlNavigator().
*/
void disconnectUrlNavigator();

View file

@ -2241,7 +2241,7 @@ QHash<QByteArray, qreal> KItemListView::preferredColumnWidths(const KItemRangeLi
widths.insert(visibleRole, headerWidth);
}
// Calculate the preferred column withs for each item and ignore values
// Calculate the preferred column widths for each item and ignore values
// smaller than the width for showing the headline unclipped.
const KItemListWidgetCreatorBase* creator = widgetCreator();
int calculatedItemCount = 0;

View file

@ -597,7 +597,7 @@ private:
/**
* Resizes the column-widths of m_headerWidget based on the preferred widths
* and the vailable view-size.
* and the available view-size.
*/
void applyAutomaticColumnWidths();
@ -873,7 +873,7 @@ qreal KItemListWidgetCreator<T>::preferredRoleColumnWidth(const QByteArray& role
* @brief Base class for creating KItemListGroupHeaders.
*
* It is recommended that applications simply use the KItemListGroupHeaderCreator-template class.
* For a custom implementation the methods create() and recyle() must be reimplemented.
* For a custom implementation the methods create() and recycle() must be reimplemented.
* The intention of the group-header creator is to prevent repetitive and expensive instantiations and
* deletions of KItemListGroupHeaders by recycling existing header instances.
*/

View file

@ -251,7 +251,7 @@ void KItemListHeaderWidget::mouseMoveEvent(QGraphicsSceneMouseEvent* event)
case NoRoleOperation:
if ((event->pos() - m_pressedMousePos).manhattanLength() >= QApplication::startDragDistance()) {
// A role gets dragged by the user. Create a pixmap of the role that will get
// synchronized on each furter mouse-move-event with the mouse-position.
// synchronized on each further mouse-move-event with the mouse-position.
m_roleOperation = MoveRoleOperation;
const int roleIndex = roleIndexAt(m_pressedMousePos);
m_movingRole.index = roleIndex;

View file

@ -55,7 +55,7 @@ void KItemListKeyboardSearchManager::addKeys(const QString& keys)
const bool searchFromNextItem = (!m_isSearchRestarted && newSearch) || sameKey;
// to remember not to searchFromNextItem if selection was deselected
// loosing keyboard search context basically
// losing keyboard search context basically
m_isSearchRestarted = false;
Q_EMIT changeCurrentItem(sameKey ? firstKey : m_searchedString, searchFromNextItem);

View file

@ -520,7 +520,7 @@ void KFileItemModelTest::testExpandItems()
// Test expanding subfolders in a folder with the items "a/", "a/a/", "a/a/1", "a/a-1/", "a/a-1/1".
// Besides testing the basic item expansion functionality, the test makes sure that
// KFileItemModel::expansionLevelsCompare(const KFileItem& a, const KFileItem& b)
// yields the correct result for "a/a/1" and "a/a-1/", whis is non-trivial because they share the
// yields the correct result for "a/a/1" and "a/a-1/", which is non-trivial because they share the
// first three characters.
QSet<QByteArray> originalModelRoles = m_model->roles();
QSet<QByteArray> modelRoles = originalModelRoles;

View file

@ -458,7 +458,7 @@ Q_SIGNALS:
/** Is emitted if the 'grouped sorting' property has been changed. */
void groupedSortingChanged(bool groupedSorting);
/** Is emmited in reaction to a requestStatusBarText() call.
/** Is emitted in reaction to a requestStatusBarText() call.
* @see requestStatusBarText() */
void statusBarTextChanged(QString statusBarText);

View file

@ -142,8 +142,8 @@ public:
virtual QString fileName() const = 0;
/**
* Returns the path of the local repository root for the versionned directory
* Returns an emtpy QString when directory is not part of a working copy
* Returns the path of the local repository root for the versioned directory
* Returns an empty QString when directory is not part of a working copy
*/
virtual QString localRepositoryRoot(const QString& directory) const;

View file

@ -135,7 +135,7 @@ void VersionControlObserver::slotItemsChanged(const KItemRangeList& itemRanges,
{
Q_UNUSED(itemRanges)
// Because "version" role is emitted by VCS plugin (ourselfs) we don't need to
// Because "version" role is emitted by VCS plugin (ourselves) we don't need to
// analyze it and update directory item states information. So lets check if
// there is only "version".
if ( !(roles.count() == 1 && roles.contains("version")) ) {
@ -163,7 +163,7 @@ void VersionControlObserver::verifyDirectory()
// by an immediate verification.
m_dirVerificationTimer->setInterval(500);
} else {
// View was versionned but should not be anymore
// View was versioned but should not be anymore
updateItemStates();
}
} else if ((m_plugin = searchPlugin(rootItem.url()))) {

View file

@ -95,7 +95,7 @@ private Q_SLOTS:
/**
* Is invoked if the thread m_updateItemStatesThread has been finished
* and applys the item states.
* and applies the item states.
*/
void slotThreadFinished();