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
* Path to file to check.
* @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.
*/
bool isFileTheme(const QString &filePath, bool *ok) const;

View File

@ -130,7 +130,7 @@ void UpdateWorker::showUpdateDialog(bool showDontCheckForUpdatesButton)
});
download(fullFileName, latestVersion.toString());
// 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.exec();
}

View File

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

View File

@ -720,7 +720,7 @@ bool DisassemblyContextMenu::writeFailed()
msgBox.setIcon(QMessageBox::Icon::Critical);
msgBox.setWindowTitle(tr("Write error"));
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);
QAbstractButton *reopenButton = msgBox.addButton(tr("Reopen in write mode and try again"),
QMessageBox::YesRole);

View File

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