changeset 8285:e72a954df46c draft

(svn r11849) -Fix (r11848): Incomplete(?) class broke MSVC/mingw compilation
author peter1138 <peter1138@openttd.org>
date Mon, 14 Jan 2008 16:35:49 +0000
parents dbb7bfe0e95c
children 7eed93bf38fc
files src/widgets/dropdown_type.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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; }
 };