mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-01 02:46:20 -05:00
0fc3a2704b
removed VEG photoservice Enabled group synchronisation between retroshare peers! test synchro between two rs peers worked. Added crude commenting facility to photoshare, much tuning to be done git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5602 b45a01b8-16f6-495d-af2f-9b41ad6348cc
20 lines
388 B
C++
20 lines
388 B
C++
#include "AddCommentDialog.h"
|
|
#include "ui_AddCommentDialog.h"
|
|
|
|
AddCommentDialog::AddCommentDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::AddCommentDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
AddCommentDialog::~AddCommentDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
QString AddCommentDialog::getComment() const
|
|
{
|
|
return ui->textEditAddComment->document()->toPlainText();
|
|
}
|