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

Fixing warning pointed by @sfan5 and clang and cleanup guiFileSelectMenu

* Also pass clang-format on guiFileSelectMenu.h and remove it from whitelist
This commit is contained in:
Loic Blot 2017-04-22 00:51:13 +02:00
parent 4f4e2e3e83
commit 3e71c8f482
No known key found for this signature in database
GPG key ID: EFAA458E8C153987
5 changed files with 13 additions and 27 deletions

View file

@ -26,13 +26,12 @@
#include "IGUIFileOpenDialog.h"
#include "guiFormSpecMenu.h" //required because of TextDest only !!!
class GUIFileSelectMenu: public GUIModalMenu
class GUIFileSelectMenu : public GUIModalMenu
{
public:
GUIFileSelectMenu(gui::IGUIEnvironment* env, gui::IGUIElement* parent,
s32 id, IMenuManager *menumgr,
const std::string &title, const std::string &formid);
GUIFileSelectMenu(gui::IGUIEnvironment *env, gui::IGUIElement *parent, s32 id,
IMenuManager *menumgr, const std::string &title,
const std::string &formid);
~GUIFileSelectMenu();
void removeChildren();
@ -44,32 +43,21 @@ public:
void drawMenu();
bool OnEvent(const SEvent& event);
bool OnEvent(const SEvent &event);
bool isRunning() const { return m_running; }
void setTextDest(TextDest * dest) {
m_text_dst = dest;
}
void setTextDest(TextDest *dest) { m_text_dst = dest; }
private:
void acceptInput();
std::wstring m_title;
bool m_accepted;
gui::IGUIElement* m_parent;
std::string m_selectedPath;
gui::IGUIFileOpenDialog* m_fileOpenDialog;
bool m_running;
gui::IGUIFileOpenDialog *m_fileOpenDialog;
TextDest *m_text_dst;
std::string m_formname;
};
#endif /* GUIFILESELECTMENU_H_ */