Implement getters for members of wxPGWindowList
There is no reason to expose wxPGWindowList member variables. They should be set in ctors and retrieved with getters.
This commit is contained in:
@@ -35,6 +35,9 @@ public:
|
||||
|
||||
void SetSecondary(wxWindow* secondary) { m_secondary = secondary; }
|
||||
|
||||
wxWindow* GetPrimary() const { return m_primary; }
|
||||
wxWindow* GetSecondary() const { return m_secondary; }
|
||||
|
||||
wxWindow* m_primary;
|
||||
wxWindow* m_secondary;
|
||||
};
|
||||
|
Reference in New Issue
Block a user