Fixed compile of FeedReader plugin

This commit is contained in:
thunder2 2020-11-08 13:22:59 +01:00
parent e88dfecc55
commit 026cadfe13
23 changed files with 366 additions and 345 deletions

View file

@ -24,12 +24,12 @@ FeedReaderNotify::FeedReaderNotify() : QObject()
{
}
void FeedReaderNotify::notifyFeedChanged(const std::string &feedId, int type)
void FeedReaderNotify::notifyFeedChanged(uint32_t feedId, int type)
{
emit feedChanged(QString::fromStdString(feedId), type);
emit feedChanged(feedId, type);
}
void FeedReaderNotify::notifyMsgChanged(const std::string &feedId, const std::string &msgId, int type)
void FeedReaderNotify::notifyMsgChanged(uint32_t feedId, const std::string &msgId, int type)
{
emit msgChanged(QString::fromStdString(feedId), QString::fromStdString(msgId), type);
emit msgChanged(feedId, QString::fromStdString(msgId), type);
}