FIX:fixed the file name in the notification message after send success

Change-Id: Ib906c64c90939524ce7466897671a6c89b4b2d7b
This commit is contained in:
tao wang 2022-12-14 12:23:46 +08:00 committed by Lane.Wei
parent e7081c7d5f
commit 2fa7776199

View file

@ -316,7 +316,7 @@ void SendJob::process()
BOOST_LOG_TRIVIAL(error) << "send_job: send ok."; BOOST_LOG_TRIVIAL(error) << "send_job: send ok.";
//m_success_fun(); //m_success_fun();
wxCommandEvent* evt = new wxCommandEvent(m_print_job_completed_id); wxCommandEvent* evt = new wxCommandEvent(m_print_job_completed_id);
evt->SetString(params.project_name); evt->SetString(from_u8(params.project_name));
wxQueueEvent(m_plater, evt); wxQueueEvent(m_plater, evt);
m_job_finished = true; m_job_finished = true;
} }