diff options
| author | 2019-04-16 23:49:24 -0400 | |
|---|---|---|
| committer | 2019-04-16 23:49:26 -0400 | |
| commit | fbfc3473510b5b2112646fce8dac29577dd73b0e (patch) | |
| tree | bf2c072522d5cfa7d71b67892aa2211a900ee9b9 /src | |
| parent | Merge pull request #2315 from ReinUsesLisp/severity-decompiler (diff) | |
| download | yuzu-fbfc3473510b5b2112646fce8dac29577dd73b0e.tar.gz yuzu-fbfc3473510b5b2112646fce8dac29577dd73b0e.tar.xz yuzu-fbfc3473510b5b2112646fce8dac29577dd73b0e.zip | |
yuzu/bootmanager: Resolve constructor initializer list warnings
Resolves -Wreorder warnings. These will automatically be initialized to
nullptr anyways, so these were redundant.
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/bootmanager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index c29f2d2dc..a197831d8 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp | |||
| @@ -186,8 +186,7 @@ private: | |||
| 186 | }; | 186 | }; |
| 187 | 187 | ||
| 188 | GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) | 188 | GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) |
| 189 | : QWidget(parent), child(nullptr), context(nullptr), emu_thread(emu_thread) { | 189 | : QWidget(parent), emu_thread(emu_thread) { |
| 190 | |||
| 191 | setWindowTitle(QStringLiteral("yuzu %1 | %2-%3") | 190 | setWindowTitle(QStringLiteral("yuzu %1 | %2-%3") |
| 192 | .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); | 191 | .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); |
| 193 | setAttribute(Qt::WA_AcceptTouchEvents); | 192 | setAttribute(Qt::WA_AcceptTouchEvents); |