summaryrefslogtreecommitdiffstats
path: root/src/field.cpp
diff options
context:
space:
mode:
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);
}