mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 11:25:58 +01:00
fix clang warn
This commit is contained in:
parent
61c9e50bcd
commit
86f4772bd6
1 changed files with 1 additions and 1 deletions
|
@ -2160,7 +2160,7 @@ void CCompositor::renameWorkspace(const int& id, const std::string& name) {
|
|||
if (isWorkspaceSpecial(id))
|
||||
return;
|
||||
|
||||
Debug::log(LOG, "renameWorkspace: Renaming workspace %d to '%s'", id, name);
|
||||
Debug::log(LOG, "renameWorkspace: Renaming workspace %d to '%s'", id, name.c_str());
|
||||
wlr_ext_workspace_handle_v1_set_name(PWORKSPACE->m_pWlrHandle, name.c_str());
|
||||
PWORKSPACE->m_szName = name;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue