Qt/Mapping: Use QGridLayout in a few more places

This commit is contained in:
spycrab
2019-03-16 17:55:47 +01:00
parent e31ae0b3a0
commit e8b3c6cb3e
11 changed files with 141 additions and 145 deletions

View File

@ -6,7 +6,7 @@
#include "DolphinQt/Config/Mapping/MappingWidget.h"
class QHBoxLayout;
class QGridLayout;
class HotkeyDebugging final : public MappingWidget
{
@ -22,5 +22,5 @@ private:
void CreateMainLayout();
// Main
QHBoxLayout* m_main_layout;
QGridLayout* m_main_layout;
};