(svn r23530) -Codechange: begin unify the naming of widgets and add comments to them, in this case the waypoint view widgets

This commit is contained in:
rubidium
2011-12-16 16:25:34 +00:00
parent 98d3f11d45
commit b90aa80e77
2 changed files with 22 additions and 22 deletions

View File

@@ -13,12 +13,12 @@
#define WIDGETS_WAYPOINT_WIDGET_H
/** Widgets of the WC_WAYPOINT_VIEW. */
enum WaypointWindowWidgets {
WAYPVW_CAPTION,
WAYPVW_VIEWPORT,
WAYPVW_CENTERVIEW,
WAYPVW_RENAME,
WAYPVW_SHOW_VEHICLES,
enum WaypointWidgets {
WID_W_CAPTION, ///< Caption of window.
WID_W_VIEWPORT, ///< The viewport on this waypoint.
WID_W_CENTER_VIEW, ///< Center the main view on this waypoint.
WID_W_RENAME, ///< Rename this waypoint.
WID_W_SHOW_VEHICLES, ///< Show the vehicles visiting this waypoint.
};
#endif /* WIDGETS_WAYPOINT_WIDGET_H */