Use TCHAR instead of _TCHAR.
This commit is contained in:
parent
c926e18f42
commit
01c1667b09
@ -1703,7 +1703,7 @@ generic_string ScintillaEditView::getGenericTextAsString(int start, int end) con
|
||||
{
|
||||
assert(end > start);
|
||||
const int bufSize = end - start + 1;
|
||||
_TCHAR *buf = new _TCHAR[bufSize];
|
||||
TCHAR *buf = new TCHAR[bufSize];
|
||||
getGenericText(buf, bufSize, start, end);
|
||||
generic_string text = buf;
|
||||
delete[] buf;
|
||||
|
Loading…
Reference in New Issue
Block a user