mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-12 16:15:43 -04:00
made delete button and delete menu item call the same functions, so as to make the actions identical
This commit is contained in:
parent
234a510d6f
commit
f6bcfb549a
3 changed files with 8 additions and 6 deletions
|
@ -144,7 +144,7 @@ MessagesDialog::MessagesDialog(QWidget *parent)
|
|||
|
||||
msgWidget = new MessageWidget(true, this);
|
||||
ui.msgLayout->addWidget(msgWidget);
|
||||
connect(msgWidget, SIGNAL(messageRemoved()), this, SLOT(messageRemoved()));
|
||||
connect(msgWidget, SIGNAL(messageRemovalRequested(std::string)), this, SLOT(removemessage()));
|
||||
|
||||
connectActions();
|
||||
|
||||
|
@ -838,7 +838,7 @@ void MessagesDialog::openAsWindow()
|
|||
}
|
||||
|
||||
msgWidget->activateWindow();
|
||||
connect(msgWidget, SIGNAL(messageRemoved()), this, SLOT(messageRemoved()));
|
||||
connect(msgWidget, SIGNAL(messageRemovalRequested(std::string)), this, SLOT(removemessage()));
|
||||
|
||||
/* window will destroy itself! */
|
||||
}
|
||||
|
@ -858,7 +858,7 @@ void MessagesDialog::openAsTab()
|
|||
|
||||
ui.tabWidget->addTab(msgWidget,FilesDefs::getIconFromQtResourcePath(IMAGE_MAIL), msgWidget->subject(true));
|
||||
ui.tabWidget->setCurrentWidget(msgWidget);
|
||||
connect(msgWidget, SIGNAL(messageRemoved()), this, SLOT(messageRemoved()));
|
||||
connect(msgWidget, SIGNAL(messageRemovalRequested(std::string)), this, SLOT(removemessage()));
|
||||
|
||||
/* window will destroy itself! */
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue