summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c')
-rw-r--r--experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c b/experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c
index b24f8bc4c..734611448 100644
--- a/experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c
+++ b/experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c
@@ -5,11 +5,11 @@
** 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.
**
*************************************************************************
-** This file tqcontains code used to implement the VACUUM command.
+** This file contains code used to implement the VACUUM command.
**
** Most of the code in this file may be omitted by defining the
** STQLITE_OMIT_VACUUM macro.
@@ -102,7 +102,7 @@ static int execsql(char **pzErrMsg, sqlite *db, const char *zSql){
}
/*
-** This is the second stage callback. Each invocation tqcontains all the
+** This is the second stage callback. Each invocation contains all the
** data for a single row of a single table in the original database. This
** routine must write that information into the new database.
*/
@@ -131,7 +131,7 @@ static int vacuumCallback2(void *pArg, int argc, char **argv, char **NotUsed){
}
/*
-** This is the first stage callback. Each invocation tqcontains three
+** This is the first stage callback. Each invocation contains three
** arguments where are taken from the STQLITE_MASTER table of the original
** database: (1) the entry type, (2) the entry name, and (3) the SQL for
** the entry. In all cases, execute the SQL of the third argument.