jce-manager/main/HelpBox/helpbox.cpp
liranbg d4c8edf8de added help dialog
changed tooltips inside mainscreen ui
2014-10-16 14:25:44 +03:00

15 lines
194 B
C++

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