mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-13 11:32:48 -04:00
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:
parent
1b865612c5
commit
8170697029
20 changed files with 346 additions and 312 deletions
21
retroshare-gui/src/gui/Posted/PostedCreatePostDialog.cpp
Normal file
21
retroshare-gui/src/gui/Posted/PostedCreatePostDialog.cpp
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue