Added LogChannel interface function (pure virtual) to PresetEditor

This commit is contained in:
Joseph Lenox 2018-06-13 22:24:58 -05:00
parent 80bc61d833
commit 1b8e880c84

View File

@ -86,6 +86,9 @@ protected:
this->_btn_save_preset->SetToolTip(wxString(_("Save current ")) + this->title());
this->_btn_delete_preset->SetToolTip(_("Delete this preset."));
}
virtual const std::string LogChannel() = 0; //< Which log these messages should go to.
};
class PrintEditor : public PresetEditor {