summaryrefslogtreecommitdiffstats
path: root/kexi/kexidb/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/kexidb/connection.h')
-rw-r--r--kexi/kexidb/connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kexi/kexidb/connection.h b/kexi/kexidb/connection.h
index 3d4eb82c..b06df35b 100644
--- a/kexi/kexidb/connection.h
+++ b/kexi/kexidb/connection.h
@@ -566,7 +566,7 @@ class KEXI_DB_EXPORT Connection : public TQObject, public KexiDB::Object
-- false is returned and ERR_OBJECT_EXISTS error is set.
The schema of \a tableSchema is updated on success.
\return true on success. */
- bool alterTableName(TableSchema& tableSchema, const TQString& newName, bool tqreplace = false);
+ bool alterTableName(TableSchema& tableSchema, const TQString& newName, bool replace = false);
/*! Drops a query defined by \a querySchema.
If true is returned, schema information \a querySchema is destoyed
@@ -894,7 +894,7 @@ class KEXI_DB_EXPORT Connection : public TQObject, public KexiDB::Object
/*! For optional reimplemenation: asks server if database \a dbName exists.
This method is used internally in databaseExists(). The default implementation
- calls databaseNames and checks if that list tqcontains \a dbName. If you need to
+ calls databaseNames and checks if that list contains \a dbName. If you need to
ask the server specifically if a database exists, eg. if you can't retrieve a list
of all available database names, please reimplement this method and do all
needed checks.