summaryrefslogtreecommitdiffstats
path: root/src/field.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:55:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 20:59:31 +0900
commit034ed63e8dcd4071ff2857fb066f90b60313216f (patch)
treed8f02d03c1f9c77442c59c55ea75f5cb6539dec4 /src/field.cpp
parent59252e910c0a40943329918aeead9293d5ee82e0 (diff)
downloadtellico-034ed63e8dcd4071ff2857fb066f90b60313216f.tar.gz
tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f57d24985e5b3c8b8c070388aedf6fa915b1c316)
Diffstat (limited to 'src/field.cpp')
-rw-r--r--src/field.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/field.cpp b/src/field.cpp
index 793de90..16739b6 100644
--- a/src/field.cpp
+++ b/src/field.cpp
@@ -385,7 +385,7 @@ TQString Field::formatDate(const TQString& date_) {
d = 1;
}
// rather use ISO date formatting than locale formatting for now. Primarily, it makes sorting just work.
- return empty ? date_ : TQString(TQDate(y, m, d).toString(Qt::ISODate));
+ return empty ? date_ : TQString(TQDate(y, m, d).toString(TQt::ISODate));
// use short form
// return TDEGlobal::locale()->formatDate(date, true);
}