mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-11 10:35:22 -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
|
@ -29,7 +29,7 @@
|
|||
#include "rsiface/rsfiles.h"
|
||||
|
||||
#include "util/RsAction.h"
|
||||
#include "msgs/ChanMsgDialog.h"
|
||||
#include "msgs/MessageComposer.h"
|
||||
#include "settings/rsharesettings.h"
|
||||
#include "AddLinksDialog.h"
|
||||
#include "SendLinkDialog.h"
|
||||
|
@ -334,7 +334,7 @@ void SharedFilesDialog::sendremoteLinkTo()
|
|||
copyLinkRemote ();
|
||||
|
||||
/* create a message */
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
|
||||
/* fill it in
|
||||
* files are receommended already
|
||||
|
@ -355,7 +355,7 @@ void SharedFilesDialog::sendLinkTo()
|
|||
copyLinkLocal ();
|
||||
|
||||
/* create a message */
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
|
||||
|
||||
/* fill it in
|
||||
|
@ -378,7 +378,7 @@ void SharedFilesDialog::sendHtmlLinkTo( )
|
|||
copyLinkLocal ();
|
||||
|
||||
/* create a message */
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
|
||||
/* fill it in
|
||||
* files are receommended already
|
||||
|
@ -517,7 +517,7 @@ void SharedFilesDialog::recommendFilesTo( std::string rsid )
|
|||
return ;
|
||||
|
||||
/* create a message */
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
|
||||
/* fill it in
|
||||
* files are receommended already
|
||||
|
@ -547,7 +547,7 @@ void SharedFilesDialog::recommendFilesToMsg( std::string rsid )
|
|||
|
||||
/* create a message */
|
||||
|
||||
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
||||
MessageComposer *nMsgDialog = new MessageComposer(true);
|
||||
|
||||
nMsgDialog->insertFileList(files_info) ;
|
||||
nMsgDialog->newMsg();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue