(svn r12121) -Fix [FS#1764]: Drop down item indexes are now an int instead of a byte (Yexo)
authorpeter1138
Tue, 12 Feb 2008 12:54:51 +0000
changeset 8543 87899423775d
parent 8542 fd905650d3f3
child 8544 47b99dc2da26
(svn r12121) -Fix [FS#1764]: Drop down item indexes are now an int instead of a byte (Yexo)
src/widgets/dropdown.cpp
--- a/src/widgets/dropdown.cpp	Tue Feb 12 11:46:29 2008 +0000
+++ b/src/widgets/dropdown.cpp	Tue Feb 12 12:54:51 2008 +0000
@@ -49,7 +49,7 @@
 	WindowNumber parent_wnd_num;
 	byte parent_button;
 	DropDownList *list;
-	byte selected_index;
+	int selected_index;
 	byte click_delay;
 	bool drag_mode;
 	int scrolling;