refactor: Rename verify macros

This commit is contained in:
Lars Toenning
2024-11-10 13:10:41 +01:00
parent 0db0c16668
commit 9c879aea1c
74 changed files with 211 additions and 211 deletions

View File

@@ -158,8 +158,8 @@ namespace BlackGui::Models
void CListModelBaseNonTemplate::emitDataChanged(int startRowIndex, int endRowIndex)
{
BLACK_VERIFY_X(startRowIndex <= endRowIndex, Q_FUNC_INFO, "check rows");
BLACK_VERIFY_X(startRowIndex >= 0 && endRowIndex >= 0, Q_FUNC_INFO, "check rows");
SWIFT_VERIFY_X(startRowIndex <= endRowIndex, Q_FUNC_INFO, "check rows");
SWIFT_VERIFY_X(startRowIndex >= 0 && endRowIndex >= 0, Q_FUNC_INFO, "check rows");
const int columns = columnCount();
const int rows = rowCount();