diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-12-03 13:32:42 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-12-03 13:32:42 +0000 |
commit | 92cea97e92cc053c63dddea13ba77d2a560ea775 (patch) | |
tree | b3654def7556b36fd53409090fdb12d28012fa0a | |
parent | 8a63c4a12fbc856c2f6005df4621f38b4bb532b7 (diff) |
Microsoft calls this Rich Edit
https://msdn.microsoft.com/en-us/library/windows/desktop/bb787605%28v=vs.85%29.aspx
git-svn-id: http://svn.miranda-ng.org/main/trunk@15812 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/HistoryPlusPlus/historypp.dpr | 2 | ||||
-rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/HistoryPlusPlus/historypp.dpr b/plugins/HistoryPlusPlus/historypp.dpr index 4f7865cb7e..682377d73e 100644 --- a/plugins/HistoryPlusPlus/historypp.dpr +++ b/plugins/HistoryPlusPlus/historypp.dpr @@ -171,7 +171,7 @@ begin begin
hppMessagebox(hppMainWindow, FormatCString( // single line to translation script
TranslateW
- ('History++ module could not be loaded, richedit 2.0+ module is missing.\nPress OK to continue loading Miranda.')
+ ('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;
diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp index fca90eae40..d649dd39ef 100755 --- a/plugins/Msg_Export/src/FileViewer.cpp +++ b/plugins/Msg_Export/src/FileViewer.cpp @@ -203,7 +203,7 @@ int CLStreamRTFInfo::nWriteHeader(char *pszTarget, int nLen) if (nSrcLen > nLen)
{
- MessageBox(NULL, TranslateT("Failed to write to the RichEdit the buffer was to small."), MSG_BOX_TITEL, MB_OK);
+ MessageBox(NULL, TranslateT("Failed to write to the Rich Edit the buffer was to small."), MSG_BOX_TITEL, MB_OK);
return 0; // target buffer to small
}
@@ -525,10 +525,10 @@ bool bUseInternalViewer(bool bNew) bUseIntViewer = bNew;
if (bUseIntViewer && !hRichEditDll)
{
- hRichEditDll = LoadLibraryA("Msftedit.DLL");
+ hRichEditDll = LoadLibraryA("Msftedit.dll");
if (!hRichEditDll)
{
- DisplayLastError(LPGENT("Failed to load Rich Edit ( Msftedit.DLL )"));
+ DisplayLastError(LPGENT("Failed to load Rich Edit (Msftedit.dll)"));
return false;
}
}
@@ -609,7 +609,7 @@ bool bLoadFile(HWND hwndDlg, CLHistoryDlg * pclDlg) HWND hRichEdit = GetDlgItem(hwndDlg, IDC_RICHEDIT);
if (!hRichEdit) {
- MessageBox(hwndDlg, TranslateT("Failed to get handle to RichEdit!"), MSG_BOX_TITEL, MB_OK);
+ MessageBox(hwndDlg, TranslateT("Failed to get handle to Rich Edit!"), MSG_BOX_TITEL, MB_OK);
return false;
}
|