changeset 8293:d4cd0591d60d draft

(svn r11857) -Fix: some compile time warnings.
author rubidium <rubidium@openttd.org>
date Tue, 15 Jan 2008 00:48:14 +0000
parents 82cd32f1744e
children b116014f4010
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
@@ -28,6 +28,7 @@
 	StringID string; ///< String ID of item
 
 	DropDownListStringItem(StringID string, int result, bool masked) : DropDownListItem(result, masked), string(string) {}
+	virtual ~DropDownListStringItem() {}
 
 	StringID String() const;
 };
@@ -40,6 +41,7 @@
 	uint64 decode_params[10]; ///< Parameters of the string
 
 	DropDownListParamStringItem(StringID string, int result, bool masked) : DropDownListStringItem(string, result, masked) {}
+	virtual ~DropDownListParamStringItem() {}
 
 	StringID String() const;
 	void SetParam(uint index, uint64 value) { decode_params[index] = value; }