(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 9039 dc7fc84d1372
parent 9038 ba653fa53dcd
child 9040 7d9d63315d91
(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;