mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-11 15:50:38 -04:00
removed dependency of FriendDialog on RsAutoUpdatePage which is not needed anymore
This commit is contained in:
parent
9b78447109
commit
cdeee0198e
2 changed files with 2 additions and 19 deletions
|
@ -59,8 +59,7 @@
|
|||
static FriendsDialog *instance = NULL;
|
||||
|
||||
/** Constructor */
|
||||
FriendsDialog::FriendsDialog(QWidget *parent)
|
||||
: RsAutoUpdatePage(1500,parent)
|
||||
FriendsDialog::FriendsDialog(QWidget *parent) : MainPage(parent)
|
||||
{
|
||||
/* Invoke the Qt Designer generated object setup routine */
|
||||
ui.setupUi(this);
|
||||
|
@ -192,11 +191,6 @@ void FriendsDialog::processSettings(bool bLoad)
|
|||
Settings->endGroup();
|
||||
}
|
||||
|
||||
void FriendsDialog::showEvent(QShowEvent *event)
|
||||
{
|
||||
RsAutoUpdatePage::showEvent(event);
|
||||
}
|
||||
|
||||
void FriendsDialog::chatMessageReceived(const ChatMessage &msg)
|
||||
{
|
||||
if(msg.chat_id.isBroadcast())
|
||||
|
@ -226,10 +220,6 @@ void FriendsDialog::chatStatusReceived(const ChatId &chat_id, const QString &sta
|
|||
}
|
||||
}
|
||||
|
||||
void FriendsDialog::updateDisplay()
|
||||
{
|
||||
}
|
||||
|
||||
void FriendsDialog::addFriend()
|
||||
{
|
||||
std::string groupId = ui.friendList->getSelectedGroupId();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue