d4c8edf8de
changed tooltips inside mainscreen ui
14 lines
194 B
C++
14 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;
|
|
}
|