summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-06-27 16:16:35 +0000
committerbelugas <belugas@openttd.org>2008-06-27 16:16:35 +0000
commit54333f5f06fb96ff23aa422f3bde3934083e968d (patch)
tree435359e1fb234c879ece629647c75b745680d558 /src
parent8a800ee258700c60d73d5d8b27e6405e353ea23c (diff)
downloadopenttd-54333f5f06fb96ff23aa422f3bde3934083e968d.tar.xz
(svn r13646) -Change: typos and miss-aligned enum values
Diffstat (limited to 'src')
-rw-r--r--src/toolbar_gui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/toolbar_gui.cpp b/src/toolbar_gui.cpp
index 375e518bc..055b78cfe 100644
--- a/src/toolbar_gui.cpp
+++ b/src/toolbar_gui.cpp
@@ -55,7 +55,7 @@ RoadType _last_built_roadtype;
/** This enum gathers properties of both toolbars */
enum ToolBarProperties {
TBP_BUTTONWIDTH = 22, ///< width of a button
- TBP_BUTTONHEIGHT = 22, ///< height of a button, but hwight of the toolbar too
+ TBP_BUTTONHEIGHT = 22, ///< height of a button as well as the toolbars
TBP_DATEPANELWIDTH = 130, ///< used in scenario editor to calculate width of the toolbar.
TBP_TOOLBAR_MINBUTTON = 14, ///< references both toolbars
@@ -123,7 +123,7 @@ enum ToolbarScenEditorWidgets {
/** The idea of this enum is to allow a separation between widget position
* and _menu_clicked_procs's entry. By shifting, the "action" id is extracted and
- * kept safe for usage when reuired.
+ * kept safe for usage when required.
* @see ToolbarMenuWindow::OnMouseLoop */
enum ScenarioEditorMenuActions {
SEMA_MAP_CLICK = 17 << 8,
@@ -308,8 +308,8 @@ enum MapMenuEntries {
MME_SHOW_EXTRAVIEWPORTS,
MME_SHOW_SIGNLISTS,
MME_SHOW_TOWNDIRECTORY, ///< This entry is only used in Editor mode
- MME_MENUCOUNT_NORMAL = 3,
- MME_MENUCOUNT_EDITOR = 4,
+ MME_MENUCOUNT_NORMAL = 3,
+ MME_MENUCOUNT_EDITOR = 4,
};
static void ToolbarMapClick(Window *w)