[Kde-cygwin-cvs] CVS: qt-3/src/sql/drivers/sqlite qsql_sqlite.cpp,1.1.1.2,1.2 qsql_sqlite.h,1.1.1.4,
Status: Inactive
Brought to you by:
habacker
From: Christian E. <che...@us...> - 2005-09-23 09:41:11
|
Update of /cvsroot/kde-cygwin/qt-3/src/sql/drivers/sqlite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26950/src/sql/drivers/sqlite Modified Files: qsql_sqlite.cpp qsql_sqlite.h Log Message: st qt3.3.5 patch - I made the smae mistake like 3.3.4 but don't know what is going wrong there. Seems like our cvs is messed up :( ttt: ---------------------------------------------------------------------- Index: qsql_sqlite.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/sql/drivers/sqlite/qsql_sqlite.cpp,v retrieving revision 1.1.1.2 retrieving revision 1.2 diff -u -r1.1.1.2 -r1.2 --- qsql_sqlite.cpp 22 Sep 2005 12:53:49 -0000 1.1.1.2 +++ qsql_sqlite.cpp 23 Sep 2005 09:40:30 -0000 1.2 @@ -2,7 +2,7 @@ ** ** Implementation of SQLite driver classes. ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 1992-2003 Trolltech AS. All rights reserved. ** ** This file is part of the sql module of the Qt GUI Toolkit. ** EDITIONS: FREE, ENTERPRISE @@ -464,7 +464,7 @@ q.exec("PRAGMA index_info('" + indexname + "');"); - QSqlIndex index(tblname, indexname); + QSqlIndex index(indexname); while(q.next()) { QString name = q.value(2).toString(); QSqlVariant::Type type = QSqlVariant::Invalid; Index: qsql_sqlite.h =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/sql/drivers/sqlite/qsql_sqlite.h,v retrieving revision 1.1.1.4 retrieving revision 1.2 diff -u -r1.1.1.4 -r1.2 --- qsql_sqlite.h 22 Sep 2005 12:53:49 -0000 1.1.1.4 +++ qsql_sqlite.h 23 Sep 2005 09:40:30 -0000 1.2 @@ -2,7 +2,7 @@ ** ** Definition of SQLite driver classes. ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 1992-2003 Trolltech AS. All rights reserved. ** ** This file is part of the sql module of the Qt GUI Toolkit. ** EDITIONS: FREE, ENTERPRISE |