cleaning up source code removed GeneralMsgDialog and ConnectDialog

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2984 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-05-23 22:35:51 +00:00
parent 757aa7a95d
commit c3e1a71279
17 changed files with 1 additions and 2324 deletions

View file

@ -38,7 +38,6 @@
#include "BlogDetails.h"
#include "gui/ChanGroupDelegate.h"
#include "gui/GeneralMsgDialog.h"
#define BLOG_DEFAULT_IMAGE ":/images/hi64-app-kblogger.png"
@ -196,22 +195,6 @@ void BlogsDialog::openChat(std::string peerId)
return;
}
void BlogsDialog::openMsg(uint32_t type, std::string grpId, std::string inReplyTo)
{
#ifdef BLOG_DEBUG
std::cerr << "BlogsDialog::openMsg()";
std::cerr << std::endl;
#endif
GeneralMsgDialog *msgDialog = new GeneralMsgDialog(NULL);
msgDialog->addDestination(type, grpId, inReplyTo);
msgDialog->show();
/* window will destroy itself! */
}
void BlogsDialog::createMsg()
{
if (mBlogId == "")

View file

@ -49,7 +49,6 @@ public:
virtual void deleteFeedItem(QWidget *item, uint32_t type);
virtual void openChat(std::string peerId);
virtual void openMsg(uint32_t type, std::string grpId, std::string inReplyTo);
public slots: