2017-10-01 19:09:42 +00:00
|
|
|
#include "CommentsDialog.h"
|
|
|
|
#include "ui_CommentsDialog.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
CommentsDialog::CommentsDialog(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::CommentsDialog)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2017-03-31 00:51:14 +00:00
|
|
|
setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint));
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
CommentsDialog::~CommentsDialog() {}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
void CommentsDialog::on_buttonBox_accepted()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommentsDialog::on_buttonBox_rejected()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
QString CommentsDialog::getComment()
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
QString ret = ui->lineEdit->text();
|
|
|
|
return ret;
|
|
|
|
}
|