diff options
author | TDE Weblate <[email protected]> | 2025-03-15 13:04:23 +0000 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-03-19 13:12:11 +0900 |
commit | 8b3a88df55c67e3e75b93385db1c4f27f409a06f (patch) | |
tree | 8427cf9e4892c66674645e7152c3246a334bd165 /src/libs/sqlite2/expr.c | |
parent | 0b5e696d79ab1a160293d520b7526e031238989a (diff) | |
download | digikam-rename/true-false.tar.gz digikam-rename/true-false.zip |
Update translation filesrename/true-false
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/digikam
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/digikam/
Diffstat (limited to 'src/libs/sqlite2/expr.c')
-rw-r--r-- | src/libs/sqlite2/expr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/sqlite2/expr.c b/src/libs/sqlite2/expr.c index af4aa596..98cdb14e 100644 --- a/src/libs/sqlite2/expr.c +++ b/src/libs/sqlite2/expr.c @@ -371,7 +371,7 @@ int sqliteExprIsInteger(Expr *p, int *pValue){ } /* -** Return TRUE if the given string is a row-id column name. +** Return true if the given string is a row-id column name. */ int sqliteIsRowid(const char *z){ if( sqliteStrICmp(z, "_ROWID_")==0 ) return 1; @@ -1270,7 +1270,7 @@ void sqliteExprCode(Parse *pParse, Expr *pExpr){ int sqliteExprCodeExprList( Parse *pParse, /* Parsing context */ ExprList *pList, /* The expression list to be coded */ - int includeTypes /* TRUE to put datatypes on the stack too */ + int includeTypes /* true to put datatypes on the stack too */ ){ struct ExprList_item *pItem; int i, n; @@ -1486,8 +1486,8 @@ void sqliteExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ } /* -** Do a deep comparison of two expression trees. Return TRUE (non-zero) -** if they are identical and return FALSE if they differ in any way. +** Do a deep comparison of two expression trees. Return true (non-zero) +** if they are identical and return false if they differ in any way. */ int sqliteExprCompare(Expr *pA, Expr *pB){ int i; |