diff options
Diffstat (limited to 'akregator/src/feed.cpp')
-rw-r--r-- | akregator/src/feed.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/akregator/src/feed.cpp b/akregator/src/feed.cpp index cb62b53a1..a68aedbb1 100644 --- a/akregator/src/feed.cpp +++ b/akregator/src/feed.cpp @@ -208,7 +208,7 @@ TQValueList<Article> Feed::articles(const TQString& tag) void Feed::loadImage() { - TQString imageFileName = KGlobal::dirs()->saveLocation("cache", "akregator/Media/") + TQString imageFileName = TDEGlobal::dirs()->saveLocation("cache", "akregator/Media/") + Utils::fileNameForUrl(d->xmlUrl) + ".png"; d->imagePixmap.load(imageFileName, "PNG"); @@ -589,7 +589,7 @@ void Feed::slotImageFetched(const TQPixmap& image) if (image.isNull()) return; d->imagePixmap=image; - d->imagePixmap.save(KGlobal::dirs()->saveLocation("cache", "akregator/Media/") + d->imagePixmap.save(TDEGlobal::dirs()->saveLocation("cache", "akregator/Media/") + Utils::fileNameForUrl(d->xmlUrl) + ".png","PNG"); nodeModified(); |