diff options
author | planetmaker <planetmaker@openttd.org> | 2011-12-16 18:06:16 +0000 |
---|---|---|
committer | planetmaker <planetmaker@openttd.org> | 2011-12-16 18:06:16 +0000 |
commit | 985d178c37fd11afd2cdc4f44ad98a13c70727fe (patch) | |
tree | 952300c6eb2f6fc4bad9ce141bc24051a40eff06 /src/widgets | |
parent | e2d8abeec5f26b07b5d0cac0cc2405ac37aa572b (diff) | |
download | openttd-985d178c37fd11afd2cdc4f44ad98a13c70727fe.tar.xz |
(svn r23545) -Codechange: Consistently name widgets in build object window
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/object_widget.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/widgets/object_widget.h b/src/widgets/object_widget.h index fd2eb3328..1d0988a7d 100644 --- a/src/widgets/object_widget.h +++ b/src/widgets/object_widget.h @@ -14,16 +14,16 @@ /** Widgets of the WC_BUILD_OBJECT. */ enum BuildObjectWidgets { - BOW_CLASS_LIST, ///< The list with classes. - BOW_SCROLLBAR, ///< The scrollbar associated with the list. - BOW_OBJECT_MATRIX, ///< The matrix with preview sprites. - BOW_OBJECT_SPRITE, ///< A preview sprite of the object. - BOW_OBJECT_SIZE, ///< The size of an object. - BOW_INFO, ///< Other information about the object (from the NewGRF). + WID_BO_CLASS_LIST, ///< The list with classes. + WID_BO_SCROLLBAR, ///< The scrollbar associated with the list. + WID_BO_OBJECT_MATRIX, ///< The matrix with preview sprites. + WID_BO_OBJECT_SPRITE, ///< A preview sprite of the object. + WID_BO_OBJECT_SIZE, ///< The size of an object. + WID_BO_INFO, ///< Other information about the object (from the NewGRF). - BOW_SELECT_MATRIX, ///< Selection preview matrix of objects of a given class. - BOW_SELECT_IMAGE, ///< Preview image in the #BOW_SELECT_MATRIX. - BOW_SELECT_SCROLL, ///< Scrollbar next to the #BOW_SELECT_MATRIX. + WID_BO_SELECT_MATRIX, ///< Selection preview matrix of objects of a given class. + WID_BO_SELECT_IMAGE, ///< Preview image in the #WID_BO_SELECT_MATRIX. + WID_BO_SELECT_SCROLL, ///< Scrollbar next to the #WID_BO_SELECT_MATRIX. }; #endif /* WIDGETS_OBJECT_WIDGET_H */ |