MappingButton: make m_block a Common::Flag

This commit is contained in:
Michael Maltese
2017-06-13 17:36:30 -07:00
parent 5b6c8c3ad0
commit 7c79673d78
2 changed files with 11 additions and 8 deletions

View File

@ -4,6 +4,7 @@
#pragma once
#include "Common/Flag.h"
#include "DolphinQt2/QtUtils/ElidedButton.h"
class ControlReference;
@ -33,5 +34,5 @@ private:
MappingWidget* m_parent;
ControlReference* m_reference;
bool m_block = false;
Common::Flag m_block;
};