diff options
Diffstat (limited to 'plugins/HistoryPlusPlus/historypp.dpr')
-rw-r--r-- | plugins/HistoryPlusPlus/historypp.dpr | 11 |
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);
|