9 Sep
2022
9 Sep
'22
8:18 a.m.
Huw Davies (@huw) commented about programs/notepad/main.c:
return dpi; }
+void UpdateStatusBar(void) +{ + int currentLine; + int currentCol = -1; + wchar_t statusTxt[25];
This size is possibly going to be too small if the string is translated to a longer one - 256 would be a good choice. Also, let's use `WCHAR` rather than `wchar_t`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/787#note_8073