mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-02 06:16:17 -04:00
Initial source commit
Initial source commit
This commit is contained in:
14
Source/Fractorium/AboutDialog.cpp
Normal file
14
Source/Fractorium/AboutDialog.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
#include "FractoriumPch.h"
|
||||
#include "AboutDialog.h"
|
||||
|
||||
/// <summary>
|
||||
/// Constructor that takes a parent widget and passes it to the base, then
|
||||
/// sets up the GUI.
|
||||
/// </summary>
|
||||
/// <param name="parent">The parent widget. Default: NULL.</param>
|
||||
/// <param name="f">The window flags. Default: 0.</param>
|
||||
FractoriumAboutDialog::FractoriumAboutDialog(QWidget* parent, Qt::WindowFlags f)
|
||||
: QDialog(parent, f)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
}
|
Reference in New Issue
Block a user