diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-13 13:15:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-13 13:15:14 -0600 |
commit | 735d75d6ce19269dc5faa00abc8f88ff30ce2f23 (patch) | |
tree | 4e85ad9cc0479892232125234c6b71c4f17ac611 /kexi/kexidb/driver_p.h | |
parent | b180811d9a814c638032f77aaf02e84a3126328c (diff) | |
download | koffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.tar.gz koffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.zip |
Fix inadvertent TQt string conversions
This closes Bug 782
Diffstat (limited to 'kexi/kexidb/driver_p.h')
-rw-r--r-- | kexi/kexidb/driver_p.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/kexidb/driver_p.h b/kexi/kexidb/driver_p.h index 7a9be4ee..daf34a2c 100644 --- a/kexi/kexidb/driver_p.h +++ b/kexi/kexidb/driver_p.h @@ -72,7 +72,7 @@ class KEXI_DB_EXPORT DriverBehaviour /*! True if autoincrement requires field to be declared as primary key. This is true for SQLite. False by default. */ - bool AUTO_INCREMENT_RETQUIRES_PK : 1; + bool AUTO_INCREMENT_REQUIRES_PK : 1; /*! Name of a field (or built-in function) with autoincremented unique value, typically returned by Connection::drv_lastInsertRowID(). @@ -114,7 +114,7 @@ class KEXI_DB_EXPORT DriverBehaviour /*! Quotation marks used for escaping identifier (see Driver::escapeIdentifier()). Default value is '"'. Change it for your driver. */ - TQChar TQUOTATION_MARKS_FOR_IDENTIFIER; + TQChar QUOTATION_MARKS_FOR_IDENTIFIER; /*! True if using database is requied to perform real connection. This is true for may engines, e.g. for PostgreSQL, where connections @@ -122,16 +122,16 @@ class KEXI_DB_EXPORT DriverBehaviour This flag is unused for file-based db drivers, by default set to true and used for all other db drivers. */ - bool USING_DATABASE_RETQUIRED_TO_CONNECT : 1; + bool USING_DATABASE_REQUIRED_TO_CONNECT : 1; /*! True if before we know whether the fetched result of executed query is empty or not, we need to fetch first record. Particularly, it's true for SQLite. The flag is used in Cursor::open(). By default this flag is false. */ - bool _1ST_ROW_READ_AHEAD_RETQUIRED_TO_KNOW_IF_THE_RESULT_IS_EMPTY : 1; + bool _1ST_ROW_READ_AHEAD_REQUIRED_TO_KNOW_IF_THE_RESULT_IS_EMPTY : 1; /*! True if "SELECT 1 from (subquery)" is supported. False by default. Used in Connection::resultExists() for optimization. It's set to true for SQLite driver. */ - bool SELECT_1_SUBTQUERY_SUPPORTED : 1; + bool SELECT_1_SUBQUERY_SUPPORTED : 1; /*! Keywords that need to be escaped for the driver. Set this before calling Driver::initSQLKeywords. */ |