mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-18 21:38:29 -04:00
UI: Use class member initializers for settings UI
Instead of using constructor initializer list, use class member initialization
This commit is contained in:
@@ -124,14 +124,7 @@ void OBSBasicSettings::HookWidget(QWidget *widget, const char *signal,
|
||||
OBSBasicSettings::OBSBasicSettings(QWidget *parent)
|
||||
: QDialog (parent),
|
||||
main (qobject_cast<OBSBasic*>(parent)),
|
||||
ui (new Ui::OBSBasicSettings),
|
||||
generalChanged (false),
|
||||
outputsChanged (false),
|
||||
audioChanged (false),
|
||||
videoChanged (false),
|
||||
pageIndex (0),
|
||||
loading (true),
|
||||
streamProperties (nullptr)
|
||||
ui (new Ui::OBSBasicSettings)
|
||||
{
|
||||
string path;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user