summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
commit03256f3cd5149f3ff5f5f45765b0b0659db4e036 (patch)
treecaabe9e1c0e3edfd06ea5aefd4d7279664cd9ede /experimental/tqtinterface/qt4/src/3rdparty/sqlite/vacuum.c
parent0594950f65a713c2d12e8eb6ddd3f5f9b306ec08 (diff)
downloadtde-03256f3cd5149f3ff5f5f45765b0b0659db4e036.tar.gz
tde-03256f3cd5149f3ff5f5f45765b0b0659db4e036.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains
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.