clang-format: Set AllowAllConstructorInitializersOnNextLine to false

This commit is contained in:
derrod
2023-07-11 19:02:34 +02:00
committed by Lain
parent 1739272c44
commit dcc07cfe4e
45 changed files with 159 additions and 71 deletions

View File

@@ -281,7 +281,9 @@ extern void RegisterYoutubeAuth();
#endif
OBSBasic::OBSBasic(QWidget *parent)
: OBSMainWindow(parent), undo_s(ui), ui(new Ui::OBSBasic)
: OBSMainWindow(parent),
undo_s(ui),
ui(new Ui::OBSBasic)
{
setAttribute(Qt::WA_NativeWindow);
@@ -5830,7 +5832,8 @@ QMenu *OBSBasic::AddBackgroundColorMenu(QMenu *menu,
}
ColorSelect::ColorSelect(QWidget *parent)
: QWidget(parent), ui(new Ui::ColorSelect)
: QWidget(parent),
ui(new Ui::ColorSelect)
{
ui->setupUi(this);
}