Added missing breaks to p3GxsForums::notifyChanges.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8475 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2015-06-15 21:07:45 +00:00
parent 04297142ce
commit 25acecdf93

View File

@ -133,7 +133,7 @@ void p3GxsForums::notifyChanges(std::vector<RsGxsNotify *> &changes)
notify->AddFeedItem(RS_FEED_ITEM_FORUM_MSG, mit->first.toStdString(), mit1->toStdString());
}
}
continue;
break;
}
RsGxsGroupChange *grpChange = dynamic_cast<RsGxsGroupChange *>(*it);
@ -146,8 +146,9 @@ void p3GxsForums::notifyChanges(std::vector<RsGxsNotify *> &changes)
{
notify->AddFeedItem(RS_FEED_ITEM_FORUM_NEW, git->toStdString());
}
continue;
break;
}
break;
}
case RsGxsNotify::TYPE_PUBLISHKEY:
@ -162,8 +163,9 @@ void p3GxsForums::notifyChanges(std::vector<RsGxsNotify *> &changes)
{
notify->AddFeedItem(RS_FEED_ITEM_FORUM_PUBLISHKEY, git->toStdString());
}
continue;
break;
}
break;
}
}
}