diff options
Diffstat (limited to 'akregator/src/articleviewer.cpp')
-rw-r--r-- | akregator/src/articleviewer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/articleviewer.cpp b/akregator/src/articleviewer.cpp index f5fd8a5ee..b9dee41a2 100644 --- a/akregator/src/articleviewer.cpp +++ b/akregator/src/articleviewer.cpp @@ -177,7 +177,7 @@ ArticleViewer::ArticleViewer(TQWidget *parent, const char *name) connect(kapp, TQT_SIGNAL(kdisplayPaletteChanged()), this, TQT_SLOT(slotPaletteOrFontChanged()) ); connect(kapp, TQT_SIGNAL(kdisplayFontChanged()), this, TQT_SLOT(slotPaletteOrFontChanged()) ); - m_imageDir.setPath(KGlobal::dirs()->saveLocation("cache", "akregator/Media/")); + m_imageDir.setPath(TDEGlobal::dirs()->saveLocation("cache", "akregator/Media/")); m_htmlFooter = "</body></html>"; } @@ -420,7 +420,7 @@ TQString ArticleViewer::formatArticleNormalMode(Feed* feed, const Article& artic text += TQString("<span class=\"header\" dir=\"%1\">").arg(directionOf(i18n("Date"))); text += TQString ("%1:").arg(i18n("Date")); text += "</span><span class=\"headertext\">"; - text += KGlobal::locale()->formatDateTime(article.pubDate(), false, false)+"</span>\n"; // TODO: might need RTL? + text += TDEGlobal::locale()->formatDateTime(article.pubDate(), false, false)+"</span>\n"; // TODO: might need RTL? } TQString author = article.author(); if (!author.isEmpty()) @@ -515,7 +515,7 @@ TQString ArticleViewer::formatArticleCombinedMode(Feed* feed, const Article& art text += TQString("<span class=\"header\" dir=\"%1\">").arg(directionOf(i18n("Date"))); text += TQString ("%1:").arg(i18n("Date")); text += "</span><span class=\"headertext\">"; - text += KGlobal::locale()->formatDateTime(article.pubDate(), false, false)+"</span>\n"; // TODO: might need RTL? + text += TDEGlobal::locale()->formatDateTime(article.pubDate(), false, false)+"</span>\n"; // TODO: might need RTL? } TQString author = article.author(); |