summaryrefslogtreecommitdiff
path: root/src/widgets
diff options
context:
space:
mode:
authorzuu <zuu@openttd.org>2013-06-09 13:17:20 +0000
committerzuu <zuu@openttd.org>2013-06-09 13:17:20 +0000
commit086aae8d0426e3330dc10a334374f4c356254925 (patch)
tree37ea1824639660f1a6015ed698ef279070df697c /src/widgets
parent8980cb427dd4f385e050f1e9075b345d798ae25c (diff)
downloadopenttd-086aae8d0426e3330dc10a334374f4c356254925.tar.xz
(svn r25370) -Fix: Make the prefix for widget constants unique for the goal list window
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/goal_widget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/goal_widget.h b/src/widgets/goal_widget.h
index 8fe038599..3ad726785 100644
--- a/src/widgets/goal_widget.h
+++ b/src/widgets/goal_widget.h
@@ -15,9 +15,9 @@
/** Widgets of the #GoalListWindow class. */
enum GoalListWidgets {
- WID_GL_GOAL, ///< Goal text column of the goal list.
- WID_GL_PROGRESS, ///< Goal progress column of the goal list.
- WID_GL_SCROLLBAR, ///< Scrollbar of the goal list.
+ WID_GOAL_GOAL, ///< Goal text column of the goal list.
+ WID_GOAL_PROGRESS, ///< Goal progress column of the goal list.
+ WID_GOAL_SCROLLBAR, ///< Scrollbar of the goal list.
};
/** Widgets of the #GoalQuestionWindow class. */