Codechange: replace stredup + StrMakeValidInPlace with std::string + StrMakeValid
This commit is contained in:
@@ -462,7 +462,7 @@ static void IConsoleHistoryNavigate(int direction)
|
||||
* @param colour_code the colour of the command. Red in case of errors, etc.
|
||||
* @param str the message entered or output on the console (notice, error, etc.)
|
||||
*/
|
||||
void IConsoleGUIPrint(TextColour colour_code, char *str)
|
||||
void IConsoleGUIPrint(TextColour colour_code, const std::string &str)
|
||||
{
|
||||
_iconsole_buffer.push_front(IConsoleLine(str, colour_code));
|
||||
SetWindowDirty(WC_CONSOLE, 0);
|
||||
|
Reference in New Issue
Block a user