SystemMonitor: Use new format functions.

This commit is contained in:
asynts 2020-10-06 18:04:36 +02:00 committed by Andreas Kling
commit 0dec600a2a
Notes: sideshowbarker 2024-07-19 02:00:08 +09:00
7 changed files with 21 additions and 21 deletions

View file

@ -53,5 +53,5 @@ void ProcessUnveiledPathsWidget::set_pid(pid_t pid)
if (m_pid == pid)
return;
m_pid = pid;
m_model->set_json_path(String::format("/proc/%d/unveil", m_pid));
m_model->set_json_path(String::formatted("/proc/{}/unveil", m_pid));
}