mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
Fixed compile of FeedReader plugin
This commit is contained in:
parent
e88dfecc55
commit
026cadfe13
23 changed files with 366 additions and 345 deletions
|
@ -36,10 +36,13 @@ protected:
|
|||
class FeedItemData
|
||||
{
|
||||
public:
|
||||
FeedItemData() {}
|
||||
FeedItemData()
|
||||
{
|
||||
mFeedId = 0;
|
||||
}
|
||||
|
||||
public:
|
||||
QString mFeedId;
|
||||
uint32_t mFeedId;
|
||||
QString mMsgId;
|
||||
};
|
||||
|
||||
|
@ -54,7 +57,7 @@ public:
|
|||
virtual FeedItem *testFeedItem(FeedHolder *parent);
|
||||
|
||||
private slots:
|
||||
void msgChanged(const QString &feedId, const QString &msgId, int type);
|
||||
void msgChanged(uint32_t feedId, const QString &msgId, int type);
|
||||
|
||||
private:
|
||||
RsFeedReader *mFeedReader;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue