Use TCHAR instead of _TCHAR.

This commit is contained in:
Andreas Jönsson 2015-05-09 08:34:56 +02:00
parent c926e18f42
commit 01c1667b09

View File

@ -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;