mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -04:00
FeedReader
- fixed crash at startup - added some toolbar icons - added QTimer to message navigation git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6052 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
24a40fc665
commit
4804f950af
13 changed files with 187 additions and 17 deletions
|
@ -1241,9 +1241,11 @@ void p3FeedReader::cleanFeeds()
|
|||
if (removedMsgIds.size()) {
|
||||
IndicateConfigChanged();
|
||||
|
||||
std::list<std::pair<std::string, std::string> >::iterator it;
|
||||
for (it = removedMsgIds.begin(); it != removedMsgIds.end(); ++it) {
|
||||
mNotify->msgChanged(it->first, it->second, NOTIFY_TYPE_DEL);
|
||||
if (mNotify) {
|
||||
std::list<std::pair<std::string, std::string> >::iterator it;
|
||||
for (it = removedMsgIds.begin(); it != removedMsgIds.end(); ++it) {
|
||||
mNotify->msgChanged(it->first, it->second, NOTIFY_TYPE_DEL);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue