Codechange: use default dtor instead of empty (#10826)
This commit is contained in:
@@ -25,7 +25,7 @@ public:
|
||||
bool masked; ///< Masked and unselectable item
|
||||
|
||||
DropDownListItem(int result, bool masked) : result(result), masked(masked) {}
|
||||
virtual ~DropDownListItem() {}
|
||||
virtual ~DropDownListItem() = default;
|
||||
|
||||
virtual bool Selectable() const { return false; }
|
||||
virtual uint Height(uint width) const { return FONT_HEIGHT_NORMAL; }
|
||||
|
Reference in New Issue
Block a user