Stop using "short" for wxGenericTreeCtrl::m_indent

There doesn't seem no reason at all not to use "int" for this member.
This commit is contained in:
Vadim Zeitlin 2023-12-11 02:09:26 +01:00
parent a98a1a8bd4
commit 7c7429c015
2 changed files with 3 additions and 3 deletions

View file

@ -243,7 +243,7 @@ protected:
*m_key_current,
// A hint to select a parent item after deleting a child
*m_select_me;
unsigned short m_indent;
unsigned int m_indent;
int m_lineHeight;
wxPen m_dottedPen;
wxBrush m_hilightBrush,