------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=110872
------- Additional Comments From frank.osterfeld kdemail net 2005-08-17 00:29 -------
SVN commit 449859 by osterfeld:
Compile fix. Please check if it really fixes compilation for your gcc version.
CCBUG: 110872
M +1 -1 feedstoragedummyimpl.cpp
--- branches/KDE/3.5/kdepim/akregator/src/feedstoragedummyimpl.cpp #449858:449859
@ -136,7 +136,7 @
QStringList FeedStorageDummyImpl::articles(const QString& tag)
{
- return tag.isNull() ? d->entries.keys() : d->taggedArticles[tag];
+ return tag.isNull() ? QStringList(d->entries.keys()) : d->taggedArticles[tag];
}
QStringList FeedStorageDummyImpl::articles(const Category& cat)
|