Remove unnecessary lines

This commit is contained in:
Epicalert 2021-07-02 03:11:28 +08:00
parent dbd3afb6fe
commit 378bcf7f16
No known key found for this signature in database
GPG key ID: CAA46F858D0979BD

View file

@ -42,7 +42,6 @@ ConfigurationFrame::ConfigurationFrame() : wxFrame(NULL, wxID_ANY, "Configure "
wxPanel* panel = new wxPanel(this, wxID_ANY); wxPanel* panel = new wxPanel(this, wxID_ANY);
// TODO: load config file and populate values // 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"); useHaarCheckBox = new wxCheckBox(panel, wxID_ANY, "Disable DNN face detection");
// find models to populate model dropdown // 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); 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* cancelButton = new wxButton(panel, wxID_CANCEL, "Cancel");
wxButton* applyButton = new wxButton(panel, wxID_APPLY, "Apply settings"); wxButton* applyButton = new wxButton(panel, wxID_APPLY, "Apply settings");