Get rid of unused wxPGWindowList ctor

There is no use case for wxPGWindowList initialiazed with NULL data.
This commit is contained in:
Artur Wieczorek
2020-02-09 20:18:56 +01:00
parent edc47d8fed
commit f2f9cbe619
2 changed files with 0 additions and 6 deletions

View File

@@ -27,11 +27,6 @@ class WXDLLIMPEXP_FWD_PROPGRID wxPropertyGrid;
class wxPGWindowList class wxPGWindowList
{ {
public: public:
wxPGWindowList()
{
m_primary = m_secondary = NULL;
}
void SetSecondary( wxWindow* secondary ) { m_secondary = secondary; } void SetSecondary( wxWindow* secondary ) { m_secondary = secondary; }
wxWindow* m_primary; wxWindow* m_primary;

View File

@@ -14,7 +14,6 @@
class wxPGWindowList class wxPGWindowList
{ {
public: public:
wxPGWindowList();
void SetSecondary( wxWindow* secondary ); void SetSecondary( wxWindow* secondary );
wxWindow* m_primary; wxWindow* m_primary;