Remove unnecessary TODOs

This commit is contained in:
Epicalert 2021-07-03 00:39:20 +08:00
parent 5c53e82fb7
commit 4d29b21099
No known key found for this signature in database
GPG key ID: CAA46F858D0979BD

View file

@ -34,9 +34,6 @@ bool ConfigurationApp::OnInit() {
initPrefixes();
makePaths();
// TODO: put config file creation here
ConfigurationFrame* frame = new ConfigurationFrame();
frame->Show(true);
return true;
@ -53,7 +50,6 @@ ConfigurationFrame::ConfigurationFrame() : wxFrame(NULL, wxID_ANY, "Configure "
wxPanel* panel = new wxPanel(this, wxID_ANY);
// TODO: load config file and populate values
// define all controls and labels
useHaarCheckBox = new wxCheckBox(panel, wxID_ANY, "Disable DNN face detection");
wxStaticText* modelNameText = new wxStaticText(panel, wxID_ANY, "Model name:");