ENH: sync with localazy and fix compile error

Change-Id: I7cae72f24c2fde61e0c1e99c89c21801b7d10125
Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
Stone Li 2023-02-10 09:35:31 +08:00 committed by Lane.Wei
parent ecd8418640
commit 6122f5010a
24 changed files with 12418 additions and 6080 deletions

View file

@ -323,15 +323,6 @@ std::string MachineObject::get_access_code()
return get_user_access_code();
}
void MachineObject::set_access_code(std::string code)
{
this->access_code = code;
AppConfig* config = GUI::wxGetApp().app_config;
if (config && !code.empty()) {
GUI::wxGetApp().app_config->set_str("access_code", dev_id, code);
}
}
void MachineObject::set_user_access_code(std::string code)
{
this->user_access_code = code;

View file

@ -409,7 +409,6 @@ public:
void set_access_code(std::string code);
std::string get_access_code();
void set_access_code(std::string code);
void set_user_access_code(std::string code);
std::string get_user_access_code();

View file

@ -106,6 +106,8 @@ void PrintJob::process()
/* display info */
wxString msg;
int curr_percent = 10;
NetworkAgent* m_agent = wxGetApp().getAgent();
AppConfig* config = wxGetApp().app_config;
if (this->connection_type == "lan") {
msg = _L("Sending print job over LAN");
@ -291,9 +293,6 @@ void PrintJob::process()
return was_canceled();
};
NetworkAgent* m_agent = wxGetApp().getAgent();
if (params.connection_type != "lan") {
if (params.dev_ip.empty())
params.comments = "no_ip";