mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-28 19:01:36 -05:00
22 lines
457 B
C++
22 lines
457 B
C++
![]() |
#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;
|
||
|
}
|