RetroShare/retroshare-gui/src/gui/PhotoShare/PhotoCommentItem.cpp

15 lines
271 B
C++
Raw Normal View History

#include "PhotoCommentItem.h"
#include "ui_PhotoCommentItem.h"
PhotoCommentItem::PhotoCommentItem(QWidget *parent) :
QWidget(parent),
ui(new Ui::PhotoCommentItem)
{
ui->setupUi(this);
}
PhotoCommentItem::~PhotoCommentItem()
{
delete ui;
}