summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/historypp.dpr
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-08-26 13:55:46 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-08-26 13:55:46 +0000
commitae5a222a8ce41b920593c2d2a7f3911acc7861f7 (patch)
tree6a2d97ff69c75abd7b3beeb17ebea4eb81061dbd /plugins/HistoryPlusPlus/historypp.dpr
parent9da1bf03fb556a1dc879431da3bc7ce2bc57811b (diff)
h++ to use RichEdit50W control only
git-svn-id: http://svn.miranda-ng.org/main/trunk@17209 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/historypp.dpr')
-rw-r--r--plugins/HistoryPlusPlus/historypp.dpr11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/HistoryPlusPlus/historypp.dpr b/plugins/HistoryPlusPlus/historypp.dpr
index 682377d73e..7a5a4dbd09 100644
--- a/plugins/HistoryPlusPlus/historypp.dpr
+++ b/plugins/HistoryPlusPlus/historypp.dpr
@@ -165,17 +165,6 @@ begin
hppCodepage := Langpack_GetDefaultCodePage;
if hppCodepage = CP_ACP then
hppCodepage := GetACP();
- // Checking the version of richedit is available, need 2.0+
- hppRichEditVersion := InitRichEditLibrary;
- if hppRichEditVersion < 20 then
- begin
- hppMessagebox(hppMainWindow, FormatCString( // single line to translation script
- TranslateW
- ('History++ module could not be loaded, Rich Edit 2.0+ module is missing.\nPress OK to continue loading Miranda.')
- ), hppName + ' Information', MB_OK or MB_ICONINFORMATION);
- Result := 1;
- exit;
- end;
// init history functions later
HookModulesLoad := HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoad);