summaryrefslogtreecommitdiff
path: root/src/widget_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-10-06 19:16:29 +0000
committerrubidium <rubidium@openttd.org>2014-10-06 19:16:29 +0000
commit0af26b8a3786f243dd6920dbeac7d140fb447775 (patch)
tree5e4e2fdf3e4fc7c3d053f0b01acbc073afb6dfcc /src/widget_type.h
parent8c7f376ae174d4bf653a8f4fa17d5188acf83cb5 (diff)
downloadopenttd-0af26b8a3786f243dd6920dbeac7d140fb447775.tar.xz
(svn r26971) -Fix: widget_data was sometimes uint16 and sometimes uint32; make it always be uint32
Diffstat (limited to 'src/widget_type.h')
-rw-r--r--src/widget_type.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widget_type.h b/src/widget_type.h
index 6d8b32bc9..39efbb463 100644
--- a/src/widget_type.h
+++ b/src/widget_type.h
@@ -769,7 +769,7 @@ private:
*/
class NWidgetLeaf : public NWidgetCore {
public:
- NWidgetLeaf(WidgetType tp, Colours colour, int index, uint16 data, StringID tip);
+ NWidgetLeaf(WidgetType tp, Colours colour, int index, uint32 data, StringID tip);
/* virtual */ void SetupSmallestSize(Window *w, bool init_array);
/* virtual */ void Draw(const Window *w);
@@ -856,7 +856,7 @@ static inline uint ComputeMaxSize(uint base, uint max_space, uint step)
* @ingroup NestedWidgetParts
*/
struct NWidgetPartDataTip {
- uint16 data; ///< Data value of the widget.
+ uint32 data; ///< Data value of the widget.
StringID tooltip; ///< Tooltip of the widget.
};
@@ -1011,7 +1011,7 @@ static inline NWidgetPart EndContainer()
* @param tip Tooltip of the widget.
* @ingroup NestedWidgetParts
*/
-static inline NWidgetPart SetDataTip(uint16 data, StringID tip)
+static inline NWidgetPart SetDataTip(uint32 data, StringID tip)
{
NWidgetPart part;