diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-21 18:03:13 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-21 18:03:13 +0000 |
commit | e7e5637a976bfd5c9ffeaf45eb4f5cd4a00838e6 (patch) | |
tree | 02abdf23d5a3c748612631cef976367366bbd990 | |
parent | 29899d2b4101225fa6af52209be78018e3e09cc1 (diff) |
RICHED32 replaced on Msftedit
git-svn-id: http://svn.miranda-ng.org/main/trunk@11032 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/HistoryLinkListPlus/src/linklist.cpp | 2 | ||||
-rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/HistoryLinkListPlus/src/linklist.cpp b/plugins/HistoryLinkListPlus/src/linklist.cpp index 0609c89971..1fc44a1218 100644 --- a/plugins/HistoryLinkListPlus/src/linklist.cpp +++ b/plugins/HistoryLinkListPlus/src/linklist.cpp @@ -50,7 +50,7 @@ extern "C" __declspec(dllexport) int Load(void) mir_getLP(&pluginInfo);
// Load Rich Edit control
- hRichEdit = LoadLibrary(_T("RICHED32.DLL"));
+ hRichEdit = LoadLibrary(_T("Msftedit.DLL"));
if (!hRichEdit)
{
// If Rich Edit DLL load fails, exit
diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp index a92bd7ec3d..dabb03e23d 100755 --- a/plugins/Msg_Export/src/FileViewer.cpp +++ b/plugins/Msg_Export/src/FileViewer.cpp @@ -567,10 +567,10 @@ bool bUseInternalViewer( bool bNew ) bUseIntViewer = bNew;
if (bUseIntViewer && !hRichEditDll )
{
- hRichEditDll = LoadLibraryA("RICHED32.DLL");
+ hRichEditDll = LoadLibraryA("Msftedit.DLL");
if (!hRichEditDll )
{
- DisplayLastError( LPGENT("Failed to load Rich Edit ( RICHED32.DLL )" ));
+ DisplayLastError( LPGENT("Failed to load Rich Edit ( Msftedit.DLL )" ));
return false;
}
}
|