diff options
Diffstat (limited to 'libkcal/incidencebase.cpp')
-rw-r--r-- | libkcal/incidencebase.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkcal/incidencebase.cpp b/libkcal/incidencebase.cpp index a8a6bdb05..74c896f57 100644 --- a/libkcal/incidencebase.cpp +++ b/libkcal/incidencebase.cpp @@ -205,17 +205,17 @@ TQDateTime IncidenceBase::dtStart() const TQString IncidenceBase::dtStartTimeStr() const { - return KGlobal::locale()->formatTime(dtStart().time()); + return TDEGlobal::locale()->formatTime(dtStart().time()); } TQString IncidenceBase::dtStartDateStr(bool shortfmt) const { - return KGlobal::locale()->formatDate(dtStart().date(),shortfmt); + return TDEGlobal::locale()->formatDate(dtStart().date(),shortfmt); } TQString IncidenceBase::dtStartStr() const { - return KGlobal::locale()->formatDateTime(dtStart()); + return TDEGlobal::locale()->formatDateTime(dtStart()); } |