summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/sqlite/sqlite.h
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/3rdparty/sqlite/sqlite.h')
-rw-r--r--experimental/tqtinterface/qt4/src/3rdparty/sqlite/sqlite.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/experimental/tqtinterface/qt4/src/3rdparty/sqlite/sqlite.h b/experimental/tqtinterface/qt4/src/3rdparty/sqlite/sqlite.h
index b1f2942f5..5037ea6a4 100644
--- a/experimental/tqtinterface/qt4/src/3rdparty/sqlite/sqlite.h
+++ b/experimental/tqtinterface/qt4/src/3rdparty/sqlite/sqlite.h
@@ -5,7 +5,7 @@
** a legal notice, here is a blessing:
**
** May you do good and not evil.
-** May you tqfind forgiveness for yourself and forgive others.
+** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************************************************************
@@ -260,7 +260,7 @@ int sqlite_complete(const char *sql);
** whenever an attempt is made to open a database table that is
** currently locked by another process or thread. If the busy callback
** is NULL, then sqlite_exec() returns STQLITE_BUSY immediately if
-** it tqfinds a locked table. If the busy callback is not NULL, then
+** it finds a locked table. If the busy callback is not NULL, then
** sqlite_exec() invokes the callback with three arguments. The
** second argument is the name of the locked table and the third
** argument is the number of times the table has been busy. If the
@@ -361,7 +361,7 @@ void sqlite_free_table(char **result);
** character it escapes that character and allows it to be inserted into
** the string.
**
-** For example, so some string variable tqcontains text as follows:
+** For example, so some string variable contains text as follows:
**
** char *zText = "It's a happy day!";
**
@@ -727,7 +727,7 @@ int sqlite_finalize(sqlite_vm*, char **pzErrMsg);
int sqlite_reset(sqlite_vm*, char **pzErrMsg);
/*
-** If the SQL that was handed to sqlite_compile tqcontains variables that
+** If the SQL that was handed to sqlite_compile contains variables that
** are represeted in the SQL text by a question mark ('?'). This routine
** is used to assign values to those variables.
**
@@ -745,7 +745,7 @@ int sqlite_reset(sqlite_vm*, char **pzErrMsg);
** set a variable to NULL, call this routine with the 3rd parameter as a
** NULL pointer.
**
-** If the 4th "len" parameter is -1, then strlen() is used to tqfind the
+** If the 4th "len" parameter is -1, then strlen() is used to find the
** length.
**
** This routine can only be called immediately after sqlite_compile()