Fix inadvertent "TQ" changes.

(cherry picked from commit f445bdb526)
v3.5.13-sru
Darrell Anderson 13 years ago committed by Slávek Banko
parent 55a37a1d28
commit 5aba9413ec

@ -72,7 +72,7 @@ public:
if (list.find("logentries")==list.end()) {
aDb->transaction();
_q.exec("CREATE TABLE \"logentries\" (\"revision\" INTEGER UNITQUE,\"date\" INTEGER,\"author\" TEXT, \"message\" TEXT)");
_q.exec("CREATE TABLE \"logentries\" (\"revision\" INTEGER UNIQUE,\"date\" INTEGER,\"author\" TEXT, \"message\" TEXT)");
aDb->commit();
}
if (list.find("changeditems")==list.end()) {

@ -409,7 +409,7 @@ TQSqlIndex TQSQLite3Driver::primaryIndex(const TQString &tblname) const
TQSqlQuery q = createQuery();
q.setForwardOnly(TRUE);
// finrst find a UNITQUE INDEX
// finrst find a UNIQUE INDEX
q.exec("PRAGMA index_list('" + tblname + "');");
TQString indexname;
while(q.next()) {

Loading…
Cancel
Save