Don't shout in text messages

Change-Id: Ie8d2c6761c87b358f0bc8691e529ba8144e267a4
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Jarek Kobus
2016-11-04 10:42:39 +01:00
parent d771ba8921
commit 05747d7d33
6 changed files with 8 additions and 8 deletions

View File

@@ -342,7 +342,7 @@ bool SqliteStatement::checkForStepError(int resultCode) const
case SQLITE_CONSTRAINT: throwException("SqliteStatement::stepStatement: contraint prevent insert or update!");
}
throwException("SqliteStatement::stepStatement: unknown error has happen!");
throwException("SqliteStatement::stepStatement: unknown error has happened");
Q_UNREACHABLE();
}
@@ -356,7 +356,7 @@ void SqliteStatement::checkForPrepareError(int resultCode) const
case SQLITE_MISUSE: throwException("SqliteStatement::prepareStatement: was called inappropriately!");
}
throwException("SqliteStatement::prepareStatement: unknown error has happen!");
throwException("SqliteStatement::prepareStatement: unknown error has happened");
}
void SqliteStatement::setIfIsReadyToFetchValues(int resultCode) const