# HG changeset patch # User peter1138 # Date 1200328549 0 # Node ID e72a954df46cc2f2b33d2b5a8313ca5edb3d1a5a # Parent dbb7bfe0e95c18ac63821cbbb98b134a037f37b2 (svn r11849) -Fix (r11848): Incomplete(?) class broke MSVC/mingw compilation diff --git a/src/widgets/dropdown_type.h b/src/widgets/dropdown_type.h --- a/src/widgets/dropdown_type.h +++ b/src/widgets/dropdown_type.h @@ -42,6 +42,8 @@ public: uint64 decode_params[10]; ///< Parameters of the string + DropDownListParamStringItem(StringID string, uint result, bool masked) : DropDownListStringItem(string, result, masked) {} + StringID String() const; void SetParam(uint index, uint64 value) { decode_params[index] = value; } };