mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-12 17:39:00 +08:00
Fix conflict in recent merges
This commit is contained in:
parent
cc01e6565d
commit
9c7e4871db
@ -226,7 +226,7 @@ class ConfigOptionString : public ConfigOptionSingle<std::string>
|
|||||||
return escape_string_cstyle(this->value);
|
return escape_string_cstyle(this->value);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool deserialize(std::string str) {
|
bool deserialize(std::string str, bool append = false) {
|
||||||
return unescape_string_cstyle(str, this->value);
|
return unescape_string_cstyle(str, this->value);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -247,7 +247,7 @@ class ConfigOptionStrings : public ConfigOptionVector<std::string>
|
|||||||
return this->values;
|
return this->values;
|
||||||
};
|
};
|
||||||
|
|
||||||
bool deserialize(std::string str) {
|
bool deserialize(std::string str, bool append = false) {
|
||||||
return unescape_strings_cstyle(str, this->values);
|
return unescape_strings_cstyle(str, this->values);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -668,7 +668,7 @@ class ConfigBase
|
|||||||
bool equals(ConfigBase &other);
|
bool equals(ConfigBase &other);
|
||||||
t_config_option_keys diff(ConfigBase &other);
|
t_config_option_keys diff(ConfigBase &other);
|
||||||
std::string serialize(const t_config_option_key &opt_key) const;
|
std::string serialize(const t_config_option_key &opt_key) const;
|
||||||
bool set_deserialize(const t_config_option_key &opt_key, std::string str);
|
bool set_deserialize(const t_config_option_key &opt_key, std::string str, bool append = false);
|
||||||
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_();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user