~widelands-dev/widelands/trunk

« back to all changes in this revision

Viewing changes to src/wui/interactive_spectator.h

  • Committer: Wideland's Bunnybot
  • Date: 2016-01-25 08:41:09 UTC
  • mfrom: (7737.1.1 bug-1395278)
  • Revision ID: bunnybot@widelands.org-20160125084109-l8nbxl59idl0fmf6
MergedĀ lp:~klaus-halfmann/widelands/bug-1395278-wui.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2002-2003, 2006-2008 by the Widelands Development Team
 
2
 * Copyright (C) 2002-2016 by the Widelands Development Team
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or
5
5
 * modify it under the terms of the GNU General Public License
58
58
        void node_action() override;
59
59
 
60
60
private:
61
 
        UI::Button m_toggle_chat;
62
 
        UI::Button m_exit;
63
 
        UI::Button m_save;
64
 
        UI::Button m_toggle_options_menu;
65
 
        UI::Button m_toggle_statistics;
66
 
        UI::Button m_toggle_minimap;
67
 
 
68
 
 
69
 
        UI::UniqueWindow::Registry m_chat;
70
 
        UI::UniqueWindow::Registry m_options;
 
61
        UI::Button toggle_chat_;
 
62
        UI::Button exit_;
 
63
        UI::Button save_;
 
64
        UI::Button toggle_options_menu_;
 
65
        UI::Button toggle_statistics_;
 
66
        UI::Button toggle_minimap_;
 
67
 
 
68
 
 
69
        UI::UniqueWindow::Registry chat_;
 
70
        UI::UniqueWindow::Registry options_;
71
71
};
72
72
 
73
73