diff options
author | dartraiden <dartraiden@protonmail.com> | 2020-01-14 14:29:59 +0300 |
---|---|---|
committer | dartraiden <dartraiden@protonmail.com> | 2020-01-15 23:47:53 +0300 |
commit | fb2bbee9d22d1d6eb8b63e9b03d7c5dad5dae176 (patch) | |
tree | 9c6c3487a6c76d765cf298e8e5f26129c7a7b623 /plugins/Dbx_mdbx/src/dbintf.cpp | |
parent | 28880a272962ca55298b4304bf6f5512bda901d2 (diff) |
Fix capitalization
Diffstat (limited to 'plugins/Dbx_mdbx/src/dbintf.cpp')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_mdbx/src/dbintf.cpp b/plugins/Dbx_mdbx/src/dbintf.cpp index 07307cd22a..e709033386 100644 --- a/plugins/Dbx_mdbx/src/dbintf.cpp +++ b/plugins/Dbx_mdbx/src/dbintf.cpp @@ -62,7 +62,7 @@ int CDbxMDBX::Load() txn_ptr trnlck(StartTran());
if (trnlck == nullptr) {
if (m_dbError == MDBX_TXN_FULL) {
- if (IDOK == MessageBox(NULL, TranslateT("Your database is in the obsolete format. Click Ok to read the upgrade instructions or Cancel to exit"), TranslateT("Error"), MB_ICONERROR | MB_OKCANCEL))
+ if (IDOK == MessageBox(NULL, TranslateT("Your database is in the obsolete format. Click OK to read the upgrade instructions or Cancel to exit"), TranslateT("Error"), MB_ICONERROR | MB_OKCANCEL))
Utils_OpenUrl("https://www.miranda-ng.org/news/unknown_profile_format");
return EGROKPRF_OBSOLETE;
}
|