Remove unnecessary lines
This commit is contained in:
parent
dbd3afb6fe
commit
378bcf7f16
|
@ -42,7 +42,6 @@ ConfigurationFrame::ConfigurationFrame() : wxFrame(NULL, wxID_ANY, "Configure "
|
|||
wxPanel* panel = new wxPanel(this, wxID_ANY);
|
||||
|
||||
// TODO: load config file and populate values
|
||||
wxStaticText* placeholderText = new wxStaticText(panel, wxID_ANY, "There's nothing here right now, just click OK.");
|
||||
useHaarCheckBox = new wxCheckBox(panel, wxID_ANY, "Disable DNN face detection");
|
||||
|
||||
// find models to populate model dropdown
|
||||
|
@ -55,7 +54,6 @@ ConfigurationFrame::ConfigurationFrame() : wxFrame(NULL, wxID_ANY, "Configure "
|
|||
|
||||
modelNameChoice = new wxChoice(panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, modelVec.size(), modelArray);
|
||||
|
||||
// TODO: cancel button to exit without saving settings
|
||||
wxButton* cancelButton = new wxButton(panel, wxID_CANCEL, "Cancel");
|
||||
wxButton* applyButton = new wxButton(panel, wxID_APPLY, "Apply settings");
|
||||
|
||||
|
|
Loading…
Reference in a new issue