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 /plugins/Msg_Export | |
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
Diffstat (limited to 'plugins/Msg_Export')
-rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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;
}
|