fix spelling errors (#2036)

This commit is contained in:
Hye Sung Jung 2020-01-28 02:02:17 -06:00 committed by Itay Cohen
parent 63ae6e665e
commit 57b5879593
5 changed files with 5 additions and 5 deletions

View File

@ -106,7 +106,7 @@ public:
* @param filePath * @param filePath
* Path to file to check. * Path to file to check.
* @param ok * @param ok
* Output parameter. Indicates wheter or not check was successfull. * Output parameter. Indicates wheter or not check was successful.
* @return true if given file is color theme and ok == true, otherwise returns false. * @return true if given file is color theme and ok == true, otherwise returns false.
*/ */
bool isFileTheme(const QString &filePath, bool *ok) const; bool isFileTheme(const QString &filePath, bool *ok) const;

View File

@ -130,7 +130,7 @@ void UpdateWorker::showUpdateDialog(bool showDontCheckForUpdatesButton)
}); });
download(fullFileName, latestVersion.toString()); download(fullFileName, latestVersion.toString());
// Calling show() before exec() is only way make dialog non-modal // Calling show() before exec() is only way make dialog non-modal
// it seems wierd, but it works // it seems weird, but it works
progressDial.show(); progressDial.show();
progressDial.exec(); progressDial.exec();
} }

View File

@ -141,7 +141,7 @@ public:
/** /**
* @brief Get nearest flag at or before offset. * @brief Get nearest flag at or before offset.
* @param offset search position * @param offset search position
* @param flagOffsetOut adress of returned flag * @param flagOffsetOut address of returned flag
* @return flag name * @return flag name
*/ */
QString nearestFlag(RVA offset, RVA *flagOffsetOut); QString nearestFlag(RVA offset, RVA *flagOffsetOut);

View File

@ -720,7 +720,7 @@ bool DisassemblyContextMenu::writeFailed()
msgBox.setIcon(QMessageBox::Icon::Critical); msgBox.setIcon(QMessageBox::Icon::Critical);
msgBox.setWindowTitle(tr("Write error")); msgBox.setWindowTitle(tr("Write error"));
msgBox.setText( msgBox.setText(
tr("Unable to complete write operation. Consider opening in write mode. \n\nWARNING: In write mode any changes will be commited to disk")); tr("Unable to complete write operation. Consider opening in write mode. \n\nWARNING: In write mode any changes will be committed to disk"));
msgBox.addButton(tr("OK"), QMessageBox::NoRole); msgBox.addButton(tr("OK"), QMessageBox::NoRole);
QAbstractButton *reopenButton = msgBox.addButton(tr("Reopen in write mode and try again"), QAbstractButton *reopenButton = msgBox.addButton(tr("Reopen in write mode and try again"),
QMessageBox::YesRole); QMessageBox::YesRole);

View File

@ -895,7 +895,7 @@ QVector<QPolygonF> HexWidget::rangePolygons(RVA start, RVA last, bool ascii)
rect.setRight(endRect.right()); rect.setRight(endRect.right());
parts.push_back(QPolygonF(rect)); parts.push_back(QPolygonF(rect));
} else { } else {
// two seperate rectangles // two separate rectangles
rect = startRect; rect = startRect;
rect.setRight(area.right()); rect.setRight(area.right());
parts.push_back(QPolygonF(rect)); parts.push_back(QPolygonF(rect));