1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Pass clang-format on various cpp/header files (#5559)

This commit is contained in:
Loïc Blot 2017-04-23 09:52:40 +02:00 committed by GitHub
parent 0c34fe20a1
commit 91a9382c25
30 changed files with 138 additions and 183 deletions

View file

@ -30,7 +30,8 @@
#include <string>
#include <vector>
struct key_setting {
struct key_setting
{
int id;
const wchar_t *button_name;
KeyPress key;
@ -38,12 +39,11 @@ struct key_setting {
gui::IGUIButton *button;
};
class GUIKeyChangeMenu: public GUIModalMenu
class GUIKeyChangeMenu : public GUIModalMenu
{
public:
GUIKeyChangeMenu(gui::IGUIEnvironment* env, gui::IGUIElement* parent,
s32 id, IMenuManager *menumgr);
GUIKeyChangeMenu(gui::IGUIEnvironment *env, gui::IGUIElement *parent, s32 id,
IMenuManager *menumgr);
~GUIKeyChangeMenu();
void removeChildren();
@ -56,10 +56,9 @@ public:
bool acceptInput();
bool OnEvent(const SEvent& event);
bool OnEvent(const SEvent &event);
private:
void init_keys();
bool resetMenu();
@ -67,13 +66,12 @@ private:
void add_key(int id, const wchar_t *button_name, const std::string &setting_name);
bool shift_down;
s32 activeKey;
std::vector<KeyPress> key_used;
gui::IGUIStaticText *key_used_text;
std::vector<key_setting *> key_settings;
};
#endif