diff options
Diffstat (limited to 'src/svnqt/cache')
-rw-r--r-- | src/svnqt/cache/ReposLog.cpp | 2 | ||||
-rw-r--r-- | src/svnqt/cache/sqlite3/qsql_sqlite3.cpp | 8 | ||||
-rw-r--r-- | src/svnqt/cache/sqlite3/qsql_sqlite3.h | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/svnqt/cache/ReposLog.cpp b/src/svnqt/cache/ReposLog.cpp index 54c4622..d63d1d3 100644 --- a/src/svnqt/cache/ReposLog.cpp +++ b/src/svnqt/cache/ReposLog.cpp @@ -410,7 +410,7 @@ bool svn::cache::ReposLog::log(const svn::Path&what,const svn::Revision&_start, */ bool svn::cache::ReposLog::itemExists(const svn::Revision&peg,const svn::Path&path) { - /// @todo this moment I have no idea how to check real with all moves and deletes of tqparent folders without a hell of sql statements so we make it quite simple: it exists if we found it. + /// @todo this moment I have no idea how to check real with all moves and deletes of parent folders without a hell of sql statements so we make it quite simple: it exists if we found it. #if 0 diff --git a/src/svnqt/cache/sqlite3/qsql_sqlite3.cpp b/src/svnqt/cache/sqlite3/qsql_sqlite3.cpp index 6a8bea2..408cb32 100644 --- a/src/svnqt/cache/sqlite3/qsql_sqlite3.cpp +++ b/src/svnqt/cache/sqlite3/qsql_sqlite3.cpp @@ -250,14 +250,14 @@ int TQSQLite3Result::numRowsAffected() ///////////////////////////////////////////////////////// -TQSQLite3Driver::TQSQLite3Driver(TQObject * tqparent, const char *name) - : TQSqlDriver(tqparent, name) +TQSQLite3Driver::TQSQLite3Driver(TQObject * parent, const char *name) + : TQSqlDriver(parent, name) { d = new TQSQLite3DriverPrivate(); } -TQSQLite3Driver::TQSQLite3Driver(sqlite3 *connection, TQObject *tqparent, const char *name) - : TQSqlDriver(tqparent, name) +TQSQLite3Driver::TQSQLite3Driver(sqlite3 *connection, TQObject *parent, const char *name) + : TQSqlDriver(parent, name) { d = new TQSQLite3DriverPrivate(); d->access = connection; diff --git a/src/svnqt/cache/sqlite3/qsql_sqlite3.h b/src/svnqt/cache/sqlite3/qsql_sqlite3.h index 85cc22f..7c474ca 100644 --- a/src/svnqt/cache/sqlite3/qsql_sqlite3.h +++ b/src/svnqt/cache/sqlite3/qsql_sqlite3.h @@ -54,8 +54,8 @@ class TQSQLite3Driver : public TQSqlDriver { friend class TQSQLite3Result; public: - TQSQLite3Driver(TQObject *tqparent = 0, const char *name = 0); - TQSQLite3Driver(sqlite3 *connection, TQObject *tqparent = 0, const char *name = 0); + TQSQLite3Driver(TQObject *parent = 0, const char *name = 0); + TQSQLite3Driver(sqlite3 *connection, TQObject *parent = 0, const char *name = 0); ~TQSQLite3Driver(); bool hasFeature(DriverFeature f) const; bool open(const TQString & db, |