Skip to content

Commit f0356a0

Browse files
committed
Fixed PUCS4Char type reference
1 parent f975512 commit f0356a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/PythonEngine.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ TPythonVersionProp = record
195195

196196
// wchar_t is 4 bytes on Linux/OS X/Android but 2 bytes on Windows
197197
{$IFDEF POSIX}
198-
PWCharT = PUCSChar;
199-
PPWCharT = PUCSChar^;
198+
PWCharT = PUCS4Char;
199+
PPWCharT = PUCS4Char^;
200200
WCharTString = UCS4String;
201201
{$ELSE}
202202
PWCharT = PWideChar;

0 commit comments

Comments
 (0)