| 41 | #include "ui/dialogs/CustomMessageBox.h" |
| 42 | |
| 43 | InfoFrame::InfoFrame(QWidget *parent) : |
| 44 | QFrame(parent), |
| 45 | ui(new Ui::InfoFrame) |
| 46 | { |
| 47 | ui->setupUi(this); |
| 48 | ui->descriptionLabel->setHidden(true); |
| 49 | ui->nameLabel->setHidden(true); |
| 50 | updateHiddenState(); |
| 51 | } |
| 52 | |
| 53 | InfoFrame::~InfoFrame() |
| 54 | { |