mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-08 20:21:56 -04:00

Co-authored-by: Anonymous Maarten <anonymous.maarten@gmail.com> Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com>
18 lines
303 B
C++
18 lines
303 B
C++
#include "AboutDlg.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
#include <ui_about.h>
|
|
|
|
DECOMP_SIZE_ASSERT(CDialog, 0x60)
|
|
DECOMP_SIZE_ASSERT(CAboutDialog, 0x60)
|
|
|
|
// FIXME: disable dialog resizing
|
|
|
|
// FUNCTION: CONFIG 0x00403c20
|
|
CAboutDialog::CAboutDialog() : QDialog()
|
|
{
|
|
m_ui = new Ui::AboutDialog;
|
|
m_ui->setupUi(this);
|
|
}
|