Fix build error caused by 0b2ec56a
This commit is contained in:
parent
0b2ec56ae3
commit
9662be097d
@ -29,12 +29,16 @@ const wxString sLF((wxChar)10);
|
||||
|
||||
wxString wxMacConvertNewlines13To10(const wxString& data)
|
||||
{
|
||||
return wxString(data)->Replace(sCR, sLF);
|
||||
wxString string(data);
|
||||
string.Replace(sCR, sLF);
|
||||
return string;
|
||||
}
|
||||
|
||||
wxString wxMacConvertNewlines10To13(const wxString& data)
|
||||
{
|
||||
return wxString(data)->Replace(sLF, sCR);
|
||||
wxString string(data);
|
||||
string.Replace(sLF, sCR);
|
||||
return string;
|
||||
}
|
||||
|
||||
wxUint32 wxMacGetSystemEncFromFontEnc(wxFontEncoding encoding)
|
||||
|
Loading…
Reference in New Issue
Block a user