-
Notifications
You must be signed in to change notification settings - Fork 1
/
AboutDialog.cxx
32 lines (29 loc) · 1.11 KB
/
AboutDialog.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//===========================================================================
//
// K K RRRR OOO K K CCCC OOO M M
// K K R R O O K K C O O MM MM
// KKK RRRR O O KKK C O O M M M "Krokodile Cart software"
// K K R R O O K K C O O M M
// K K R R OOO K K CCCC OOO M M
//
// Copyright (c) 2009-2020 by Stephen Anthony <sa666666@gmail.com>
//
// See the file "License.txt" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//============================================================================
#include "AboutDialog.hxx"
#include "ui_aboutdialog.h"
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AboutDialog::AboutDialog(QWidget* parent, const QString& title, const QString& info)
: QDialog(parent),
m_ui(new Ui::AboutDialog)
{
m_ui->setupUi(this);
setWindowTitle(title);
m_ui->myText->setHtml(info);
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AboutDialog::~AboutDialog()
{
delete m_ui;
}