21 lines
387 B
C++
21 lines
387 B
C++
#include "GeneralStatusPage.h"
|
|
#include "ui_GeneralStatusPage.h"
|
|
|
|
CGeneralStatusPage::CGeneralStatusPage(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::CGeneralStatusPage)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
CGeneralStatusPage::~CGeneralStatusPage()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
int CGeneralStatusPage::SetGeneralMsgText(QString Txt)
|
|
{
|
|
ui->mGenMsgTextEdit->setText(Txt);
|
|
return RET_OK;
|
|
}
|