Removed pointer to external editor resource in IsolTestOptions, changed TestTool::handleResponse() to get editor value from m_options member variable

This commit is contained in:
hawkess
2021-09-21 14:12:26 -05:00
parent 5edabc014d
commit 4fd5093d94
3 changed files with 6 additions and 11 deletions
+2 -2
View File
@@ -33,9 +33,9 @@ struct IsolTestOptions: CommonOptions
bool noColor = false;
bool acceptUpdates = false;
std::string testFilter = std::string{};
std::string* editor = nullptr;
std::string editor = std::string{};
explicit IsolTestOptions(std::string* _editor);
explicit IsolTestOptions();
void addOptions() override;
bool parse(int _argc, char const* const* _argv) override;
void validate() const override;