Replace wxGridCellBoolRenderer::ms_sizeCheckMark with a local var

This variable is (now) only used in a single function, so there is no
reason to declare it as a class member.

No real changes.
This commit is contained in:
Vadim Zeitlin
2020-04-01 22:33:02 +02:00
parent f2923d49e1
commit d41d159576
2 changed files with 5 additions and 8 deletions

View File

@@ -143,9 +143,6 @@ public:
virtual wxGridCellRenderer *Clone() const wxOVERRIDE
{ return new wxGridCellBoolRenderer; }
private:
static wxSize ms_sizeCheckMark;
};