diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 11:54:26 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-16 23:37:57 +0900 |
commit | ef06f14f2475bd08d3ea2ceec54a7b2238f3554e (patch) | |
tree | 03df826633e4ba084d133ca977c4fc37c74f21ac /kexi/kexidb/expression.cpp | |
parent | 895081803a715ee89f4a90cfbf63d558ef2b2ebc (diff) | |
download | koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.tar.gz koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kexi/kexidb/expression.cpp')
-rw-r--r-- | kexi/kexidb/expression.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/kexidb/expression.cpp b/kexi/kexidb/expression.cpp index f4e5ccfe..25af20ee 100644 --- a/kexi/kexidb/expression.cpp +++ b/kexi/kexidb/expression.cpp @@ -539,12 +539,12 @@ TQString ConstExpr::toString(QuerySchemaParameterValueListIterator* params) else if (m_token==REAL_CONST) return TQString::number(value.toPoint().x())+"."+TQString::number(value.toPoint().y()); else if (m_token==DATE_CONST) - return "'" + value.toDate().toString(Qt::ISODate) + "'"; + return "'" + value.toDate().toString(TQt::ISODate) + "'"; else if (m_token==DATETIME_CONST) - return "'" + value.toDateTime().date().toString(Qt::ISODate) - + " " + value.toDateTime().time().toString(Qt::ISODate) + "'"; + return "'" + value.toDateTime().date().toString(TQt::ISODate) + + " " + value.toDateTime().time().toString(TQt::ISODate) + "'"; else if (m_token==TIME_CONST) - return "'" + value.toTime().toString(Qt::ISODate) + "'"; + return "'" + value.toTime().toString(TQt::ISODate) + "'"; return value.toString(); } |