Fix typos found via `codespell --skip .git -w`

This commit is contained in:
Martchus 2021-07-03 19:14:13 +02:00
parent 4e5068900f
commit 7765e6f062
11 changed files with 13 additions and 13 deletions

View File

@ -10,7 +10,7 @@ set(META_APP_DESCRIPTION
"Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models") "Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models")
set(META_VERSION_MAJOR 6) set(META_VERSION_MAJOR 6)
set(META_VERSION_MINOR 4) set(META_VERSION_MINOR 4)
set(META_VERSION_PATCH 1) set(META_VERSION_PATCH 2)
set(META_APP_VERSION ${META_VERSION_MAJOR}.${META_VERSION_MINOR}.${META_VERSION_PATCH}) set(META_APP_VERSION ${META_VERSION_MAJOR}.${META_VERSION_MINOR}.${META_VERSION_PATCH})
project(${META_PROJECT_NAME}) project(${META_PROJECT_NAME})

View File

@ -54,7 +54,7 @@ AboutDialog::AboutDialog(QWidget *parent, const QString &applicationName, const
m_ui->productNameLabel->setText(QApplication::applicationName()); m_ui->productNameLabel->setText(QApplication::applicationName());
} }
if (creator.startsWith(QLatin1Char('<'))) { if (creator.startsWith(QLatin1Char('<'))) {
// assing rich text as-is // assign rich text as-is
m_ui->creatorLabel->setText(creator); m_ui->creatorLabel->setText(creator);
} else { } else {
// add "developed by " before creator name // add "developed by " before creator name

View File

@ -223,7 +223,7 @@ function (add_android_apk_extra_libs TARGET_NAME)
else () else ()
message( message(
STATUS "Unable to find library \"${LIBRARY}\" required by target \"${TARGET_NAME}\". The library is likely " STATUS "Unable to find library \"${LIBRARY}\" required by target \"${TARGET_NAME}\". The library is likely "
"a private dependency of the target and therfore not visible within the context of creating the " "a private dependency of the target and therefore not visible within the context of creating the "
"final application. Relying on androiddeployqt for adding it to the APK.") "final application. Relying on androiddeployqt for adding it to the APK.")
endif () endif ()
endforeach () endforeach ()

View File

@ -505,7 +505,7 @@ if (REQUIRED_ICONS)
unset(ICON_THEME_PATH) unset(ICON_THEME_PATH)
endforeach () endforeach ()
if (NOT ICON_THEME_PATH) if (NOT ICON_THEME_PATH)
message(FATAL_ERROR "The specified icon theme \"${ICON_THEME}\" coud not be found.") message(FATAL_ERROR "The specified icon theme \"${ICON_THEME}\" could not be found.")
endif () endif ()
endforeach () endforeach ()
set(BUILTIN_ICON_THEMES_QRC_FILE "${CMAKE_CURRENT_BINARY_DIR}/icons/${META_PROJECT_NAME}_builtinicons.qrc") set(BUILTIN_ICON_THEMES_QRC_FILE "${CMAKE_CURRENT_BINARY_DIR}/icons/${META_PROJECT_NAME}_builtinicons.qrc")

View File

@ -69,7 +69,7 @@ elseif (APPLE)
set(GUI_TYPE MACOSX_BUNDLE) set(GUI_TYPE MACOSX_BUNDLE)
endif () endif ()
# add source files requried by both GUI variants # add source files required by both GUI variants
list(APPEND SRC_FILES ${GUI_SRC_FILES}) list(APPEND SRC_FILES ${GUI_SRC_FILES})
list(APPEND ADDITIONAL_HEADER_FILES ${GUI_HEADER_FILES}) list(APPEND ADDITIONAL_HEADER_FILES ${GUI_HEADER_FILES})

View File

@ -79,7 +79,7 @@ inline const QString &EnterPasswordDialog::password() const
* *
* The instruction text is displayed at the top of the dialog. * The instruction text is displayed at the top of the dialog.
* If the instruction text is empty the default text "Enter the new password" * If the instruction text is empty the default text "Enter the new password"
* or "Enter the password" (depending on whether the verification is requried or * or "Enter the password" (depending on whether the verification is required or
* not) displayed. * not) displayed.
* *
* \sa EnterPasswordDialog::setInstruction() * \sa EnterPasswordDialog::setInstruction()

View File

@ -181,7 +181,7 @@ void centerWidget(QWidget *widget, const QWidget *parent, const QPoint *position
* \brief Moves the specified \a widget to be centered within the (available) screen area or \a parent if specified. * \brief Moves the specified \a widget to be centered within the (available) screen area or \a parent if specified.
* \returns Returns whether an overflow occurred. * \returns Returns whether an overflow occurred.
* \remarks * \remarks
* - If the widget overflows it is resized to take the whole available space in the dimention(s) that overflow. * - If the widget overflows it is resized to take the whole available space in the dimension(s) that overflow.
* If the widget is a window, its frame is attempted to be taken into account. If the window frame can not be determined * If the widget is a window, its frame is attempted to be taken into account. If the window frame can not be determined
* a generous assumption is made. It can nevertheless make sense to simply show \a widget using QWidget::showMaximized() * a generous assumption is made. It can nevertheless make sense to simply show \a widget using QWidget::showMaximized()
* to make it simply fill the entire screen after all. * to make it simply fill the entire screen after all.

View File

@ -18,7 +18,7 @@ for srcdir in "$@"; do
for svg_icon_full_path in $(find "$srcdir" -iname '*.svg'); do for svg_icon_full_path in $(find "$srcdir" -iname '*.svg'); do
prefix="${svg_icon_full_path%/scalable/*}" prefix="${svg_icon_full_path%/scalable/*}"
svg_icon="${svg_icon_full_path##*/scalable/}" svg_icon="${svg_icon_full_path##*/scalable/}"
# add inkscape command for each icon and size and ensure ouput directory exists # add inkscape command for each icon and size and ensure output directory exists
for size in 16 32 48; do for size in 16 32 48; do
mkdir -p "${prefix}/${size}x${size}/${svg_icon%/*.svg}" mkdir -p "${prefix}/${size}x${size}/${svg_icon%/*.svg}"
cmds+=("inkscape --without-gui \"${svg_icon_full_path}\" --export-png=\"${prefix}/${size}x${size}/${svg_icon%.svg}.png\" --export-width=${size} --export-height=${size}") cmds+=("inkscape --without-gui \"${svg_icon_full_path}\" --export-png=\"${prefix}/${size}x${size}/${svg_icon%.svg}.png\" --export-width=${size} --export-height=${size}")

View File

@ -247,7 +247,7 @@
</property> </property>
<property name="text"> <property name="text">
<string>These settings take effect after restarting the application. <string>These settings take effect after restarting the application.
These settings might be overwritten by your Qt platfrom integration plugin and hence have no effect.</string> These settings might be overwritten by your Qt platform integration plugin and hence have no effect.</string>
</property> </property>
<property name="textFormat"> <property name="textFormat">
<enum>Qt::PlainText</enum> <enum>Qt::PlainText</enum>

View File

@ -75,7 +75,7 @@ QtSettings::QtSettings()
/*! /*!
* \brief Destroys the settings object. * \brief Destroys the settings object.
* \remarks Unlike QSettings not explicitely saved settings are not saved * \remarks Unlike QSettings not explicitly saved settings are not saved
* automatically. * automatically.
*/ */
QtSettings::~QtSettings() QtSettings::~QtSettings()
@ -91,7 +91,7 @@ bool QtSettings::hasCustomFont() const
} }
/*! /*!
* \brief Restors the settings from the specified QSettings object. * \brief Restores the settings from the specified QSettings object.
* \remarks The restored values are not applied automatically (except * \remarks The restored values are not applied automatically (except
* translation path). * translation path).
* \sa apply(), save() * \sa apply(), save()
@ -142,7 +142,7 @@ void QtSettings::save(QSettings &settings) const
} }
/*! /*!
* \brief Applies the current configuraion. * \brief Applies the current configuration.
* \remarks * \remarks
* - Some settings take only affect after restarting the application. * - Some settings take only affect after restarting the application.
* - QApplication/QGuiApplication must be instantiated before calling this * - QApplication/QGuiApplication must be instantiated before calling this

View File

@ -250,7 +250,7 @@ bool SettingsDialog::apply()
QStringList &errors = const_cast<OptionPage *>(page)->errors(); QStringList &errors = const_cast<OptionPage *>(page)->errors();
if (errors.isEmpty()) { if (errors.isEmpty()) {
errorMessage.append(QStringLiteral("<li><i>") % category->displayName() % QLatin1Char('/') % page->widget()->windowTitle() errorMessage.append(QStringLiteral("<li><i>") % category->displayName() % QLatin1Char('/') % page->widget()->windowTitle()
% QStringLiteral("</i>: ") % tr("unknonw error") % QStringLiteral("</li>")); % QStringLiteral("</i>: ") % tr("unknown error") % QStringLiteral("</li>"));
} else { } else {
for (const QString &error : errors) { for (const QString &error : errors) {
errorMessage.append(QStringLiteral("<li><i>") % category->displayName() % QLatin1Char('/') % page->widget()->windowTitle() errorMessage.append(QStringLiteral("<li><i>") % category->displayName() % QLatin1Char('/') % page->widget()->windowTitle()