Changeset - r23597:6ae8b7b72e2e
[Not reviewed]
master
0 1 0
Michael Lutz - 5 years ago 2019-04-02 19:30:44
michi@icosahedron.de
Fix: Forgotten override keywords for DropDownListIconItem.
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/widgets/dropdown_type.h
Show inline comments
 
@@ -89,9 +89,9 @@ class DropDownListIconItem : public Drop
 
public:
 
	DropDownListIconItem(SpriteID sprite, PaletteID pal, StringID string, int result, bool masked);
 

	
 
	/* virtual */ uint Height(uint width) const;
 
	/* virtual */ uint Width() const;
 
	/* virtual */ void Draw(int left, int right, int top, int bottom, bool sel, Colours bg_colour) const;
 
	uint Height(uint width) const override;
 
	uint Width() const override;
 
	void Draw(int left, int right, int top, int bottom, bool sel, Colours bg_colour) const override;
 
	void SetDimension(Dimension d);
 
};
 

	
0 comments (0 inline, 0 general)