Get rid of unused member variable

This commit is contained in:
Artur Wieczorek 2020-04-16 23:42:46 +02:00
parent 8e2d1fb221
commit 491b68f7be
2 changed files with 1 additions and 4 deletions

View File

@ -3126,7 +3126,7 @@ bool cxApplication::OnInit()
if ( frameSize.x > 500 )
frameSize.x = 500;
FormMain* frame = Form1 = new FormMain( "wxPropertyGrid Sample", wxPoint(0,0), frameSize);
FormMain* frame = new FormMain( "wxPropertyGrid Sample", wxPoint(0,0), frameSize);
frame->Show(true);
//

View File

@ -275,9 +275,6 @@ class cxApplication : public wxApp
public:
virtual bool OnInit() wxOVERRIDE;
private:
FormMain *Form1;
};
wxDECLARE_APP(cxApplication);