diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-20 10:22:17 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-20 10:22:17 -0500 |
commit | 0942bcca3aafe09fe4dbd3cab7a7767bf672e397 (patch) | |
tree | cda5705f039fb45270fab95c745cc36959e2f107 /kexi | |
parent | eca807732adb25767ed2a31907cd53a9872fd68d (diff) | |
download | koffice-0942bcca3aafe09fe4dbd3cab7a7767bf672e397.tar.gz koffice-0942bcca3aafe09fe4dbd3cab7a7767bf672e397.zip |
Update for recent TQ changes.
Diffstat (limited to 'kexi')
-rwxr-xr-x | kexi/doc/dev/CHANGELOG-Kexi-js | 2 | ||||
-rw-r--r-- | kexi/doc/dev/TODO-Kexi-js | 2 | ||||
-rw-r--r-- | kexi/kexidb/parser/sqlparser.y | 2 | ||||
-rw-r--r-- | kexi/tests/altertable/defaultvalues.altertable | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/kexi/doc/dev/CHANGELOG-Kexi-js b/kexi/doc/dev/CHANGELOG-Kexi-js index 326c12a3..8654e145 100755 --- a/kexi/doc/dev/CHANGELOG-Kexi-js +++ b/kexi/doc/dev/CHANGELOG-Kexi-js @@ -5471,7 +5471,7 @@ TODO: add - simplification: now bof() is computed as m_at==0 - we are internally counting records from 1 and externally from 0 (what is visible using at()). - - m_at and thus at() has now Q_LLONG type + - m_at and thus at() has now TQ_LLONG type 2003-09-14 - KexiDB::Object::setErrorMsg renamed to setError diff --git a/kexi/doc/dev/TODO-Kexi-js b/kexi/doc/dev/TODO-Kexi-js index 81509308..b5676bfa 100644 --- a/kexi/doc/dev/TODO-Kexi-js +++ b/kexi/doc/dev/TODO-Kexi-js @@ -569,7 +569,7 @@ for blobs...The client has to read the _entire_ blob into memory."; use: - Implement tree structures using idea #5 described here http://www.depesz.com/various-sqltrees.php (does pgsql require this hack?) - double values are still rounded: consider storing them in memory as a decimal type - (e.g. using a special Q_LLONG+decimalplace class); needed e.g. in KexiQueryParameters::getParameters() + (e.g. using a special TQ_LLONG+decimalplace class); needed e.g. in KexiQueryParameters::getParameters() - handle input mask using a special KexiDB::FieldInputMask class --needed in forms (KexiDBLineEdit::setColumnInfo()) and table views - add setValue() to cursors: this will REQUIRE a buffered cursor, since we cannot run sql diff --git a/kexi/kexidb/parser/sqlparser.y b/kexi/kexidb/parser/sqlparser.y index 1b74def7..c2d8e887 100644 --- a/kexi/kexidb/parser/sqlparser.y +++ b/kexi/kexidb/parser/sqlparser.y @@ -510,7 +510,7 @@ using namespace KexiDB; %union { TQString* stringValue; - Q_LLONG integerValue; + TQ_LLONG integerValue; bool booleanValue; struct realType realValue; KexiDB::Field::Type colType; diff --git a/kexi/tests/altertable/defaultvalues.altertable b/kexi/tests/altertable/defaultvalues.altertable index 1ed27440..c2b5d885 100644 --- a/kexi/tests/altertable/defaultvalues.altertable +++ b/kexi/tests/altertable/defaultvalues.altertable @@ -76,7 +76,7 @@ endDesign bytefield Byte DEFAULT=[int]11, shortintfield ShortInteger DEFAULT=[int]22, intfield Integer DEFAULT=[int]333, - bigintfield BigInteger DEFAULT=[Q_LLONG]1234567891011, + bigintfield BigInteger DEFAULT=[TQ_LLONG]1234567891011, booleanfield Boolean NOTNULL DEFAULT=[bool]true, datefield Date DEFAULT=[QDate]2006-08-09, datetimefield DateTime DEFAULT=[QDateTime]2006-08-09T10:36:01, @@ -96,7 +96,7 @@ Insert table field "longtextfield" at position 2 (longtextfield LongText DEFAULT Insert table field "bytefield" at position 3 (bytefield Byte DEFAULT=[int]11) Insert table field "shortintfield" at position 4 (shortintfield ShortInteger DEFAULT=[int]22) Insert table field "intfield" at position 5 (intfield Integer DEFAULT=[int]333) -Insert table field "bigintfield" at position 6 (bigintfield BigInteger DEFAULT=[Q_LLONG]1234567891011) +Insert table field "bigintfield" at position 6 (bigintfield BigInteger DEFAULT=[TQ_LLONG]1234567891011) Insert table field "booleanfield" at position 7 (booleanfield Boolean NOTNULL DEFAULT=[bool]true) Insert table field "datefield" at position 8 (datefield Date DEFAULT=[QDate]2006-08-09) Insert table field "datetimefield" at position 9 (datetimefield DateTime DEFAULT=[QDateTime]2006-08-09T10:36:01) |