mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
15 lines
271 B
C++
15 lines
271 B
C++
|
#include "PhotoCommentItem.h"
|
||
|
#include "ui_PhotoCommentItem.h"
|
||
|
|
||
|
PhotoCommentItem::PhotoCommentItem(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::PhotoCommentItem)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
PhotoCommentItem::~PhotoCommentItem()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|