Fix _update() signature.

This commit is contained in:
Joseph Lenox 2018-06-13 23:14:34 -05:00 committed by Joseph Lenox
parent 991c601d8f
commit 8cf4d5fe40
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ MaterialEditor::MaterialEditor(wxWindow* parent, t_config_option_keys options) :
this->_build();
}
void MaterialEditor::_update() {
void MaterialEditor::_update(const std::string& opt_key) {
}
void MaterialEditor::_build() {

View File

@ -11,7 +11,7 @@ PrinterEditor::PrinterEditor(wxWindow* parent, t_config_option_keys options) :
this->_build();
}
void PrinterEditor::_update() {
void PrinterEditor::_update(const std::string& opt_key) {
}
void PrinterEditor::_build() {