diff options
author | alberth <alberth@openttd.org> | 2009-03-28 11:17:01 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2009-03-28 11:17:01 +0000 |
commit | c557172e2c648d5a4ece36c16b8f9edffafe8ce8 (patch) | |
tree | 27c840d39c330a2c17fb075c8c0fd7c86d0833ac | |
parent | e00dc4190327c1be0ee18dcc84bad49e1441261c (diff) | |
download | openttd-c557172e2c648d5a4ece36c16b8f9edffafe8ce8.tar.xz |
(svn r15873) -Codechange: Changing two comments to Doxygen comment.
-rw-r--r-- | src/dock_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dock_gui.cpp b/src/dock_gui.cpp index b4d8dc926..53994bbdf 100644 --- a/src/dock_gui.cpp +++ b/src/dock_gui.cpp @@ -289,7 +289,7 @@ void ShowBuildDocksToolbar() AllocateWindowDescFront<BuildDocksToolbarWindow>(&_build_docks_toolbar_desc, TRANSPORT_WATER); } -/* Widget definition for the build docks in scenario editor window */ +/** Widget definition for the build docks in scenario editor window. */ static const Widget _build_docks_scen_toolb_widgets[] = { { WWT_CLOSEBOX, RESIZE_NONE, COLOUR_DARK_GREEN, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, // DTW_CLOSEBOX { WWT_CAPTION, RESIZE_NONE, COLOUR_DARK_GREEN, 11, 102, 0, 13, STR_9801_WATERWAYS_CONSTRUCTION_SE, STR_018C_WINDOW_TITLE_DRAG_THIS}, // DTW_CAPTION @@ -308,7 +308,7 @@ static const Widget _build_docks_scen_toolb_widgets[] = { { WIDGETS_END}, }; -/* Window definition for the build docks in scenario editor window */ +/** Window definition for the build docks in scenario editor window. */ static const WindowDesc _build_docks_scen_toolbar_desc( WDP_AUTO, WDP_AUTO, 115, 36, 115, 36, WC_SCEN_BUILD_TOOLBAR, WC_NONE, |