diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-26 14:21:18 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-26 14:21:18 +0300 |
commit | 8b37b16480b372ce6ec5a3dbf50f6ea3c065a968 (patch) | |
tree | 0493a9bbb412ad95cce9777868031822c25dfd27 /plugins | |
parent | 8bdb78f666213cb8094b26ab8f55e0613c94e26c (diff) |
compilation fix
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_events.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_events.pas b/plugins/HistoryPlusPlus/hpp_events.pas index 6f70f39a35..35991b82fc 100644 --- a/plugins/HistoryPlusPlus/hpp_events.pas +++ b/plugins/HistoryPlusPlus/hpp_events.pas @@ -608,7 +608,7 @@ begin cp := CP_UTF8
else
cp := Hi.CodePage;
- PText := DbEvent_GetTextW(@EventInfo, CP_ACP);
+ PText := DbEvent_GetTextW(@EventInfo);
if not Assigned(PText) then
PText := mir_wstrdup('');
Hi.Text := Format(TranslateUnicodeString(Hi.Text), [PText]);
|