diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-05-31 23:09:24 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:19:03 +0100 |
commit | edc9f36322e44bc0b164cf27ca03cf970ef48091 (patch) | |
tree | 87f9e3987be23c7df647f6dda35d848d5745f6e8 /src/Main/FatalErrorHandler.cpp | |
parent | 34370b99336e10084940762cde690b81c5830a7a (diff) | |
download | VeraCrypt-edc9f36322e44bc0b164cf27ca03cf970ef48091.tar.gz VeraCrypt-edc9f36322e44bc0b164cf27ca03cf970ef48091.zip |
Replace TrueCrypt references in added sources and resources by VeraCrypt ones.
Diffstat (limited to 'src/Main/FatalErrorHandler.cpp')
-rw-r--r-- | src/Main/FatalErrorHandler.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Main/FatalErrorHandler.cpp b/src/Main/FatalErrorHandler.cpp index d84a717d..dd9b2838 100644 --- a/src/Main/FatalErrorHandler.cpp +++ b/src/Main/FatalErrorHandler.cpp @@ -76,9 +76,9 @@ namespace TrueCrypt url.Replace (L"=0X0x", L"=0x"); url.Replace (L"=0X", L"=0x"); - wxString msg = L"A critical error has occurred and TrueCrypt must be terminated. If this is caused by a bug in TrueCrypt, we would like to fix it. To help us, you can send us an automatically generated error report containing the following items:\n\n- Program version\n- Operating system version\n- Hardware architecture\n- Checksum of TrueCrypt executable\n- Error category\n- Error address\n"; + wxString msg = L"A critical error has occurred and VeraCrypt must be terminated. If this is caused by a bug in VeraCrypt, we would like to fix it. To help us, you can send us an automatically generated error report containing the following items:\n\n- Program version\n- Operating system version\n- Hardware architecture\n- Checksum of VeraCrypt executable\n- Error category\n- Error address\n"; #if wxUSE_STACKWALKER == 1 - msg += L"- TrueCrypt call stack\n"; + msg += L"- VeraCrypt call stack\n"; #endif msg += L"\nIf you select 'Yes', the following URL (which contains the entire error report) will be opened in your default Internet browser.\n\n"; @@ -198,11 +198,11 @@ namespace TrueCrypt wxString vars; wxString exName = StringConverter::ToWide (StringConverter::GetTypeName (typeid (e))); - if (exName.find (L"TrueCrypt::") != string::npos) + if (exName.find (L"VeraCrypt::") != string::npos) exName = exName.Mid (11); wxString exPos = StringConverter::ToWide (e.what()); - if (exPos.find (L"TrueCrypt::") != string::npos) + if (exPos.find (L"VeraCrypt::") != string::npos) exPos = exPos.Mid (11); vars << L"cpus=" << wxThread::GetCPUCount(); @@ -219,9 +219,9 @@ namespace TrueCrypt url.Replace (L"=0X0x", L"=0x"); url.Replace (L"=0X", L"=0x"); - wxString msg = L"An unhandled exception has occurred and TrueCrypt must be terminated. If this is caused by a bug in TrueCrypt, we would like to fix it. To help us, you can send us an automatically generated error report containing the following items:\n\n- Program version\n- Operating system version\n- Hardware architecture\n- Checksum of TrueCrypt executable\n- Error description\n- Error location\n"; + wxString msg = L"An unhandled exception has occurred and VeraCrypt must be terminated. If this is caused by a bug in VeraCrypt, we would like to fix it. To help us, you can send us an automatically generated error report containing the following items:\n\n- Program version\n- Operating system version\n- Hardware architecture\n- Checksum of VeraCrypt executable\n- Error description\n- Error location\n"; #if wxUSE_STACKWALKER == 1 - msg += L"- TrueCrypt call stack\n"; + msg += L"- VeraCrypt call stack\n"; #endif msg += L"\nIf you select 'Yes', the following URL (which contains the entire error report) will be opened in your default Internet browser.\n\n"; |