diff options
author | Michele Calgaro <[email protected]> | 2023-11-08 11:05:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-08 11:13:41 +0900 |
commit | 1a7a57976491e8df569198d8e903bf9e57e233f0 (patch) | |
tree | a45ca34d705aeeacfcb9fb2abf9c254d4ebf8269 /kbabel/common/catalog.cpp | |
parent | ff5a38ceb1f92082da2f5f65913bf590c20ccbc3 (diff) | |
download | tdesdk-1a7a57976491e8df569198d8e903bf9e57e233f0.tar.gz tdesdk-1a7a57976491e8df569198d8e903bf9e57e233f0.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kbabel/common/catalog.cpp')
-rw-r--r-- | kbabel/common/catalog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kbabel/common/catalog.cpp b/kbabel/common/catalog.cpp index a3c4fdcd..fcf50750 100644 --- a/kbabel/common/catalog.cpp +++ b/kbabel/common/catalog.cpp @@ -1807,12 +1807,12 @@ TQString Catalog::dateTime() const switch(options.dateFormat) { - case Qt::LocalDate: + case TQt::LocalDate: { dateTimeString = TDEGlobal::locale()->formatDateTime( dt ); break; } - case Qt::ISODate: + case TQt::ISODate: { dateTimeString = dt.toString("yyyy-MM-dd hh:mm"); TQTime t; @@ -1823,7 +1823,7 @@ TQString Catalog::dateTime() const dateTimeString += t.toString("hhmm"); break; } - case Qt::TextDate: + case TQt::TextDate: { dateTimeString = options.customDateFormat; |