mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 04:37:52 -06:00
Fixed constness of Config::env_
This commit is contained in:
parent
57232395f4
commit
6888fefc2e
2 changed files with 2 additions and 2 deletions
|
@ -336,7 +336,7 @@ double ConfigBase::get_abs_value(const t_config_option_key &opt_key, double rati
|
||||||
return static_cast<const ConfigOptionFloatOrPercent*>(raw_opt)->get_abs_value(ratio_over);
|
return static_cast<const ConfigOptionFloatOrPercent*>(raw_opt)->get_abs_value(ratio_over);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfigBase::setenv_()
|
void ConfigBase::setenv_() const
|
||||||
{
|
{
|
||||||
t_config_option_keys opt_keys = this->keys();
|
t_config_option_keys opt_keys = this->keys();
|
||||||
for (t_config_option_keys::const_iterator it = opt_keys.begin(); it != opt_keys.end(); ++it) {
|
for (t_config_option_keys::const_iterator it = opt_keys.begin(); it != opt_keys.end(); ++it) {
|
||||||
|
|
|
@ -1113,7 +1113,7 @@ public:
|
||||||
|
|
||||||
double get_abs_value(const t_config_option_key &opt_key) const;
|
double get_abs_value(const t_config_option_key &opt_key) const;
|
||||||
double get_abs_value(const t_config_option_key &opt_key, double ratio_over) const;
|
double get_abs_value(const t_config_option_key &opt_key, double ratio_over) const;
|
||||||
void setenv_();
|
void setenv_() const;
|
||||||
void load(const std::string &file);
|
void load(const std::string &file);
|
||||||
void load_from_ini(const std::string &file);
|
void load_from_ini(const std::string &file);
|
||||||
void load_from_gcode_file(const std::string &file);
|
void load_from_gcode_file(const std::string &file);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue