Use TCHAR instead of _TCHAR.

pull/44/head
Andreas Jönsson 2015-05-09 08:34:56 +02:00
parent c926e18f42
commit 01c1667b09
1 changed files with 1 additions and 1 deletions

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;