diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2020-08-30 19:43:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-30 19:43:23 -0500 |
| commit | 0a63340c205ab21dab42ad616c67868c41ae5c06 (patch) | |
| tree | a4b70eb6f4dc64def9fecfb00ab21e93b89977c2 /Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp | |
| parent | 75b4f70e5eaf50e5c2a05633d2bf91d0b99c25a1 (diff) | |
| parent | 24e8ed8e2761ac991057ac0f808c3d2bd913fe5b (diff) | |
Merge pull request #9037 from shuffle2/code-cleanup
Code cleanup
Diffstat (limited to 'Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp b/Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp index 4c7f41c5e4..1b18435544 100644 --- a/Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp +++ b/Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.cpp @@ -28,7 +28,7 @@ void DualShockUDPClientWidget::CreateWidgets() m_servers_enabled = new QCheckBox(tr("Enable")); m_servers_enabled->setChecked(Config::Get(ciface::DualShockUDPClient::Settings::SERVERS_ENABLED)); - main_layout->addWidget(m_servers_enabled, 0, 0); + main_layout->addWidget(m_servers_enabled, 0, {}); m_server_list = new QListWidget(); main_layout->addWidget(m_server_list); |
