diff options
Diffstat (limited to 'libkcal/htmlexport.cpp')
-rw-r--r-- | libkcal/htmlexport.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libkcal/htmlexport.cpp b/libkcal/htmlexport.cpp index de436e0d3..7938c7512 100644 --- a/libkcal/htmlexport.cpp +++ b/libkcal/htmlexport.cpp @@ -147,9 +147,9 @@ void HtmlExport::createMonthView(TQTextStream *ts) while ( start < toDate() ) { // Write header - *ts << "<h2>" << (i18n("month_year","%1 %2").arg(KGlobal::locale()->calendar()->monthName(start)) + *ts << "<h2>" << (i18n("month_year","%1 %2").arg(TDEGlobal::locale()->calendar()->monthName(start)) .arg(start.year())) << "</h2>\n"; - if ( KGlobal::locale()->weekStartDay() == 1 ) { + if ( TDEGlobal::locale()->weekStartDay() == 1 ) { start = start.addDays(1 - start.dayOfWeek()); } else { if (start.dayOfWeek() != 7) { @@ -161,7 +161,7 @@ void HtmlExport::createMonthView(TQTextStream *ts) // Write table header *ts << " <tr>"; for(int i=0; i<7; ++i) { - *ts << "<th>" << KGlobal::locale()->calendar()->weekDayName( start.addDays(i) ) << "</th>"; + *ts << "<th>" << TDEGlobal::locale()->calendar()->weekDayName( start.addDays(i) ) << "</th>"; } *ts << "</tr>\n"; @@ -256,7 +256,7 @@ void HtmlExport::createEventList (TQTextStream *ts) if ( first ) { *ts << " <tr><td colspan=\"" << TQString::number(columns) << "\" class=\"datehead\"><i>" - << KGlobal::locale()->formatDate(dt) + << TDEGlobal::locale()->formatDate(dt) << "</i></td></tr>\n"; first = false; } |