diff options
author | George Hazan <george.hazan@gmail.com> | 2014-11-18 13:40:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-11-18 13:40:59 +0000 |
commit | 8cebd2859be7808d238ae67320aca7e2eef4c1a1 (patch) | |
tree | 7f9521da36a06b6ae3c160ba1c6dcca47ee7a189 /plugins/NotesAndReminders | |
parent | 5e0e7e8ea01cdfa22349a100ca165f52550c9b14 (diff) |
RichEd20.dll replaced with Msftedit.dll
git-svn-id: http://svn.miranda-ng.org/main/trunk@11011 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotesAndReminders')
-rw-r--r-- | plugins/NotesAndReminders/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NotesAndReminders/src/main.cpp b/plugins/NotesAndReminders/src/main.cpp index 730cb0ca59..5ee0629b34 100644 --- a/plugins/NotesAndReminders/src/main.cpp +++ b/plugins/NotesAndReminders/src/main.cpp @@ -305,9 +305,9 @@ extern "C" __declspec(dllexport) int Load(void) ctrls.dwICC = ICC_DATE_CLASSES;
InitCommonControlsEx(&ctrls);
- hRichedDll = LoadLibrary(_T("RICHED20.DLL"));
+ hRichedDll = LoadLibrary(_T("Msftedit.dll"));
if (!hRichedDll) {
- if (MessageBox(0, TranslateT("Miranda could not load the Notes & Reminders plugin, riched20.dll is missing. If you are using WINE, please make sure you have riched20.dll installed. Press 'Yes' to continue loading Miranda."), _T(SECTIONNAME), MB_YESNO | MB_ICONINFORMATION) != IDYES)
+ if (MessageBox(0, TranslateT("Miranda could not load the Notes & Reminders plugin, Msftedit.dll is missing. If you are using WINE, please make sure you have Msftedit.dll installed. Press 'Yes' to continue loading Miranda."), _T(SECTIONNAME), MB_YESNO | MB_ICONINFORMATION) != IDYES)
return 1;
return 0;
}
|