diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-08-05 20:53:18 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-08-05 20:53:18 +0000 |
commit | 29dc5b6a2cc340f879221ccd7e54c2bad8b8be51 (patch) | |
tree | 4ad33f95e15115a403af781681edcdab24bd98e3 /plugins/NotesAndReminders | |
parent | 9c7cd5b212a391b919d7ea856aebf4a123234975 (diff) |
Windows 95 is not supported
git-svn-id: http://svn.miranda-ng.org/main/trunk@10086 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotesAndReminders')
-rw-r--r-- | plugins/NotesAndReminders/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NotesAndReminders/src/main.cpp b/plugins/NotesAndReminders/src/main.cpp index 543d1a2863..dbe5ac7daa 100644 --- a/plugins/NotesAndReminders/src/main.cpp +++ b/plugins/NotesAndReminders/src/main.cpp @@ -307,7 +307,7 @@ extern "C" __declspec(dllexport) int Load(void) hRichedDll = LoadLibrary(_T("RICHED20.DLL"));
if (!hRichedDll) {
- if (MessageBox(0, TranslateT("Miranda could not load the Note & Reminders plugin, RICHED20.DLL is missing. If you are using Windows 95 or 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, 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)
return 1;
return 0;
}
|