File diff r23442:bbaa5fa30379 → r23443:d6dcf039fb2e
src/company_gui.cpp
Show inline comments
 
@@ -516,14 +516,12 @@ static const LiveryClass _livery_class[L
 
};
 

	
 
class DropDownListColourItem : public DropDownListItem {
 
public:
 
	DropDownListColourItem(int result, bool masked) : DropDownListItem(result, masked) {}
 

	
 
	virtual ~DropDownListColourItem() {}
 

	
 
	StringID String() const
 
	{
 
		return this->result >= COLOUR_END ? STR_COLOUR_DEFAULT : _colour_dropdown[this->result];
 
	}
 

	
 
	uint Height(uint width) const