Added remove, copy to clipboard and resend of messages in History Browser.

Clear history in PeersDialog don't remove messages from the History Keeper.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3447 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-09-05 20:50:34 +00:00
parent c63905fefc
commit bacf1f5a80
13 changed files with 379 additions and 45 deletions

View file

@ -1385,7 +1385,6 @@ void PeersDialog::setChatInfo(QString info, QColor color)
void PeersDialog::on_actionClearChat_triggered()
{
ui.msgText->clear();
historyKeeper.clear();
}
void PeersDialog::displayInfoChatMenu(const QPoint& pos)
@ -1756,6 +1755,6 @@ void PeersDialog::statusColumn()
void PeersDialog::on_actionMessageHistory_triggered()
{
ImHistoryBrowser imBrowser(false, historyKeeper, this);
ImHistoryBrowser imBrowser(false, historyKeeper, ui.lineEdit, this);
imBrowser.exec();
}