Loading [MathJax]/jax/input/TeX/config.js
Radium Engine  1.5.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
HelpDialog.cpp
1 
2 #include <Gui/Timeline/HelpDialog.hpp>
3 
4 #include "ui_HelpDialog.h"
5 
6 namespace Ra::Gui {
7 
8 HelpDialog::HelpDialog( QWidget* parent ) : QDialog( parent ), ui( new Ui::HelpDialog ) {
9  ui->setupUi( this );
10 }
11 
12 HelpDialog::~HelpDialog() {
13  delete ui;
14 }
15 
16 void HelpDialog::reject() {
17  emit closed();
18  QDialog::reject();
19 }
20 
21 } // namespace Ra::Gui