diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-16 09:05:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-16 09:05:05 +0000 |
commit | 678bf995c627d261588c23a0909073415ca36a7f (patch) | |
tree | 54811c81b46be4475bede9b180206ae4e8b01f60 /plugins | |
parent | 1f79fdb79119d8e6ecf3d8dcbbf189e9dfdf80cb (diff) |
quick & dirty fix for h++ log behaviour
perhaps someone will patch it later
git-svn-id: http://svn.miranda-ng.org/main/trunk@17301 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_richedit.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_richedit.pas b/plugins/HistoryPlusPlus/hpp_richedit.pas index 6a626c2561..73f045a6bb 100644 --- a/plugins/HistoryPlusPlus/hpp_richedit.pas +++ b/plugins/HistoryPlusPlus/hpp_richedit.pas @@ -1112,10 +1112,10 @@ const SF_UNICODE = 16;
SF_USECODEPAGE = 32;
- MSFTEDIT_CLASS = 'RICHEDIT50W';
+ MSFTEDIT_CLASS = 'RICHEDIT20W' {'RICHEDIT50W'};
const
- MSFTEDIT_DLL = 'MSFTEDIT.DLL';
+ MSFTEDIT_DLL = 'RICHED20.DLL' {'MSFTEDIT.DLL'};
var
emError : DWord;
FRichEditModule: THandle = 0;
|