Decided again creating new Gxs dialogs.

Decided on final form of GXS group create 
Added Post and Comment create
disabled wiki 

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5791 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2012-11-07 23:24:23 +00:00
parent 1b865612c5
commit 8170697029
20 changed files with 346 additions and 312 deletions

View file

@ -0,0 +1,21 @@
#include "PostedCreatePostDialog.h"
#include "ui_PostedCreatePostDialog.h"
PostedCreatePostDialog::PostedCreatePostDialog(TokenQueue* tokenQ, RsPosted *posted, QWidget *parent):
QDialog(parent), mTokenQueue(tokenQ), mPosted(posted),
ui(new Ui::PostedCreatePostDialog)
{
ui->setupUi(this);
}
void PostedCreatePostDialog::createPost()
{
close();
}
PostedCreatePostDialog::~PostedCreatePostDialog()
{
delete ui;
}