mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix Log User Notify
This commit is contained in:
parent
738029f96a
commit
1c9bea730f
@ -478,6 +478,9 @@ void MainWindow::initStackedPage()
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
addPage(newsFeed = new NewsFeed(ui->stackPages), grp, ¬ify);
|
||||
|
||||
//List All notify before Setting was created
|
||||
QList<QPair<MainPage*, QPair<QAction*, QListWidgetItem*> > >::iterator notifyIt;
|
||||
for (notifyIt = notify.begin(); notifyIt != notify.end(); ++notifyIt) {
|
||||
@ -489,7 +492,6 @@ void MainWindow::initStackedPage()
|
||||
}
|
||||
}
|
||||
|
||||
addPage(newsFeed = new NewsFeed(ui->stackPages), grp, ¬ify);
|
||||
addPage(settingsDialog = new SettingsPage(ui->stackPages),grp,¬ify);
|
||||
|
||||
/* Create the toolbar */
|
||||
|
@ -494,7 +494,7 @@ void NewsFeed::addFeedItemIfUnique(FeedItem *item, bool replace)
|
||||
}
|
||||
|
||||
addFeedItem(item);
|
||||
sendNewsFeedChanged();
|
||||
//sendNewsFeedChanged(); //Already done by addFeedItem()
|
||||
}
|
||||
|
||||
void NewsFeed::remUniqueFeedItem(FeedItem *item)
|
||||
|
Loading…
Reference in New Issue
Block a user