1
0
mirror of synced 2024-09-19 09:46:09 +00:00

Unicode compatibility for App.Version.Strings

This commit is contained in:
Mark van Renswoude 2014-07-02 13:44:16 +00:00
parent 2bf7ac5bf9
commit 2ff0f544d3

View File

@ -199,7 +199,7 @@ uses
Windows;
const
tkStrings = [tkString, tkLString, tkWString];
tkStrings = [tkString, tkLString, tkWString{$IF CompilerVersion >= 23}, tkUString{$IFEND}];
var
GApp: TX2App;
@ -359,7 +359,7 @@ begin
GetPropList(Strings.ClassInfo, tkStrings, pProps);
for iProp := 0 to iCount - 1 do begin
if VerQueryValueA(pBuffer, PAnsiChar(cName + AnsiString('\') + pProps^[iProp]^.Name),
if VerQueryValue(pBuffer, PChar(string(cName) + '\' + pProps^[iProp]^.Name),
Pointer(pValue), dVer) then
SetStrProp(Strings, pProps[iProp], pValue);
end;