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

@@ -108,7 +108,7 @@ namespace BlackMisc::Simulation
case IndexPitchOnGround: return QVariant::fromValue(m_pitchOnGround);
default: break;
}
BLACK_VERIFY_X(false, Q_FUNC_INFO, "Cannot handle index");
SWIFT_VERIFY_X(false, Q_FUNC_INFO, "Cannot handle index");
return QStringLiteral("Wrong index for %1").arg(i);
}
@@ -128,7 +128,7 @@ namespace BlackMisc::Simulation
case IndexPitchOnGround: m_pitchOnGround.setPropertyByIndex(index.copyFrontRemoved(), variant); return;
default: break;
}
BLACK_VERIFY_X(false, Q_FUNC_INFO, "Cannot handle index");
SWIFT_VERIFY_X(false, Q_FUNC_INFO, "Cannot handle index");
}
QString CInterpolationAndRenderingSetupBase::convertToQString(bool i18n) const