mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-09 06:42:19 -04:00
rename class and source ChanMsgDialog to MessageComposer
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2978 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
75349f4fe8
commit
1fb7fb005c
12 changed files with 98 additions and 98 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
|
||||
#include "MessagesDialog.h"
|
||||
#include "msgs/ChanMsgDialog.h"
|
||||
#include "msgs/MessageComposer.h"
|
||||
#include "gui/RetroShareLink.h"
|
||||
#include "util/printpreview.h"
|
||||
#include "util/misc.h"
|
||||
|
@ -475,7 +475,7 @@ void MessagesDialog::msgfilelistWidgetCostumPopupMenu( QPoint point )
|
|||
|
||||
void MessagesDialog::newmessage()
|
||||
{
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
|
||||
/* fill it in */
|
||||
//std::cerr << "MessagesDialog::newmessage()" << std::endl;
|
||||
|
@ -504,7 +504,7 @@ void MessagesDialog::replytomessage()
|
|||
if (!rsMsgs -> getMessage(mid, msgInfo))
|
||||
return ;
|
||||
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
/* fill it in */
|
||||
//std::cerr << "MessagesDialog::newmessage()" << std::endl;
|
||||
nMsgDialog->newMsg();
|
||||
|
@ -552,7 +552,7 @@ void MessagesDialog::replyallmessage()
|
|||
if (!rsMsgs -> getMessage(mid, msgInfo))
|
||||
return ;
|
||||
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
/* fill it in */
|
||||
//std::cerr << "MessagesDialog::newmessage()" << std::endl;
|
||||
nMsgDialog->newMsg();
|
||||
|
@ -607,7 +607,7 @@ void MessagesDialog::forwardmessage()
|
|||
if (!rsMsgs -> getMessage(mid, msgInfo))
|
||||
return ;
|
||||
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
/* fill it in */
|
||||
//std::cerr << "MessagesDialog::newmessage()" << std::endl;
|
||||
nMsgDialog->newMsg();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue