(svn r11849) -Fix (r11848): Incomplete(?) class broke MSVC/mingw compilation
authorpeter1138
Mon, 14 Jan 2008 16:35:49 +0000
changeset 8781 e03f519901c1
parent 8780 6f3f3ec6c69a
child 8782 5d7bdc3abeac
(svn r11849) -Fix (r11848): Incomplete(?) class broke MSVC/mingw compilation
src/widgets/dropdown_type.h
--- a/src/widgets/dropdown_type.h	Mon Jan 14 16:10:58 2008 +0000
+++ b/src/widgets/dropdown_type.h	Mon Jan 14 16:35:49 2008 +0000
@@ -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; }
 };