Changeset - r4573:34936d2fa6cc
[Not reviewed]
master
0 1 0
belugas - 18 years ago 2006-09-08 03:59:38
belugas@openttd.org
(svn r6423) -Codechange: Replace two magic numbers by appropriate enum/define value
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
widget.c
Show inline comments
 
@@ -522,7 +522,7 @@ static void DropdownMenuWndProc(Window *
 
					sel--;
 
					continue;
 
				}
 
				if (WP(w,dropdown_d).items[i] != 0) {
 
				if (WP(w,dropdown_d).items[i] != STR_NULL) {
 
					if (sel == 0) GfxFillRect(x + 1, y, x + w->width - 4, y + 9, 0);
 
					DrawStringTruncated(x + 2, y, WP(w,dropdown_d).items[i], sel == 0 ? 12 : 16, w->width - 4);
 

	
 
@@ -634,7 +634,7 @@ void ShowDropDownMenu(Window *w, const S
 
		wi->right - wi[-1].left + 1,
 
		i * 10 + 4,
 
		DropdownMenuWndProc,
 
		0x3F,
 
		WC_DROPDOWN_MENU,
 
		_dropdown_menu_widgets);
 

	
 
	w2->widget[0].color = wi->color;
0 comments (0 inline, 0 general)