WIP GCode substitutions: Changed the format of gcode_substitutions by

adding an empty comment as a fourth parameter to each substitution.
In the future, we will provide a UI to show / edit the comment.
This commit is contained in:
Vojtech Bubnik 2022-01-27 17:02:07 +01:00
parent 12cebddce6
commit 7da4bebe7a
3 changed files with 13 additions and 13 deletions

View file

@ -60,8 +60,8 @@ class SubstitutionManager
bool is_valid_id(int substitution_id, const wxString& message);
public:
SubstitutionManager() {};
~SubstitutionManager() {};
SubstitutionManager() = default;
~SubstitutionManager() = default;
void init(DynamicPrintConfig* config, wxWindow* parent, wxFlexGridSizer* grid_sizer);
void create_legend();