mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-18 10:35:25 +00:00
fix spelling errors (#2036)
This commit is contained in:
parent
63ae6e665e
commit
57b5879593
@ -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;
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user