Also
%=
ist zumindest auch falsch, es muss nur
%
sein.
var += value
und Konsorten sind Kurzformen von
var = var + value
.
So funktioniert es bei mir ohne Probleme:
Delphi-Quellcode:
uint32_t seconds = 350;
std::wstring title = std::to_wstring(seconds / 60) + L"Min " + std::to_wstring(seconds % 60) + L"Sec";
AllocConsole;
SetWindowTextW(GetConsoleWindow(), title .c_str());