src/AboutDialog.cpp

changeset 6
f8474f2c5db9
parent 4
fe106c497b75
child 16
a5d8e783a7b0
equal deleted inserted replaced
5:22baafbf770d 6:f8474f2c5db9
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 #include "AboutDialog.h" 17 #include "AboutDialog.h"
18 #include "../ui/ui_AboutDialog.h" 18 #include "../ui/ui_AboutDialog.h"
19 #include <QDebug>
19 20
20 AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDialog) 21 AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDialog)
21 { 22 {
23 qDebug() << Q_FUNC_INFO;
22 ui->setupUi(this); 24 ui->setupUi(this);
23 } 25 }
24 26
25 AboutDialog::~AboutDialog() 27 AboutDialog::~AboutDialog()
26 { 28 {
29 qDebug() << Q_FUNC_INFO;
27 delete ui; 30 delete ui;
28 } 31 }

mercurial