summaryrefslogtreecommitdiff
path: root/src/window.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-05-30 11:42:19 +0000
committeralberth <alberth@openttd.org>2009-05-30 11:42:19 +0000
commitbfaf610fff372d6c4b0cdd887ec1997b97e8d25f (patch)
treec0fc34ce49c5f152701a46039fa8ec2adbec1bcd /src/window.cpp
parentbfb8df3fb9e21fffce0560a4fb44bb615663a7a2 (diff)
downloadopenttd-bfaf610fff372d6c4b0cdd887ec1997b97e8d25f.tar.xz
(svn r16466) -Codechange: Improved wording in comments.
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 10165ef87..aed4065b2 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -287,7 +287,7 @@ static void DispatchLeftClickEvent(Window *w, int x, int y, bool double_click)
}
if (w->focused_widget != wi) {
- /* Repaint the widget that loss focus. A focused edit box may else leave the caret left on the screen */
+ /* Repaint the widget that lost focus. A focused edit box may else leave the caret on the screen. */
if (w->focused_widget != NULL) w->InvalidateWidget(w->focused_widget - w->widget);
focused_widget_changed = true;
w->focused_widget = wi;