From 378bcf7f16423b64db0f8ee791444c4f277ec16e Mon Sep 17 00:00:00 2001 From: Epicalert Date: Fri, 2 Jul 2021 03:11:28 +0800 Subject: [PATCH] Remove unnecessary lines --- src/fc2dconfig.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/fc2dconfig.cpp b/src/fc2dconfig.cpp index 9210ed3..6d86956 100644 --- a/src/fc2dconfig.cpp +++ b/src/fc2dconfig.cpp @@ -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");