changeset 9529:3559144c16be draft

(svn r13533) -Codechange: Replace direct class member access of GUIList with the appropriate function calls
author skidd13 <skidd13@openttd.org>
date Mon, 16 Jun 2008 17:05:17 +0000
parents 6a031a5f7412
children e5323930bdb9
files src/bridge_gui.cpp src/town_gui.cpp
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/bridge_gui.cpp
+++ b/src/bridge_gui.cpp
@@ -151,7 +151,7 @@
 	{
 		this->DrawWidgets();
 
-		this->DrawSortButtonState(BBSW_DROPDOWN_ORDER, (this->bridges->flags & VL_DESC) ? SBS_DOWN : SBS_UP);
+		this->DrawSortButtonState(BBSW_DROPDOWN_ORDER, this->bridges->IsDescSortOrder() ? SBS_DOWN : SBS_UP);
 
 		uint y = this->widget[BBSW_BRIDGE_LIST].top + 2;
 
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -545,7 +545,7 @@
 		SetVScrollCount(this, this->towns.Length());
 
 		this->DrawWidgets();
-		this->DrawSortButtonState(this->towns.sort_type == 0 ? TDW_SORTNAME : TDW_SORTPOPULATION, this->towns.IsDescSortOrder() ? SBS_DOWN : SBS_UP);
+		this->DrawSortButtonState(this->towns.SortType() == 0 ? TDW_SORTNAME : TDW_SORTPOPULATION, this->towns.IsDescSortOrder() ? SBS_DOWN : SBS_UP);
 
 		{
 			int n = 0;