From d867788044fbb6f56b5b0f5bc4d9feb18da594fb Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Thu, 29 Aug 2013 16:05:40 +0300 Subject: client: add some missing USE_GUI define guards --- client/gui/gui.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'client') diff --git a/client/gui/gui.cpp b/client/gui/gui.cpp index 6dd4ceab..4bf7ac89 100644 --- a/client/gui/gui.cpp +++ b/client/gui/gui.cpp @@ -440,9 +440,11 @@ void GUI::Dialog::handle_message_click(int id) application().push_event(*event); } +#ifdef USE_GUI if (_close_on_message_click) { application().hide_gui(); } +#endif } void GUI::Dialog::pre_destroy() @@ -861,7 +863,9 @@ public: bool SettingsDialog::handle_close(const CEGUI::EventArgs& e) { DBG(0, ""); +#ifdef USE_GUI application().hide_gui(); +#endif return true; } -- cgit