diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-11-22 23:17:53 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-11-22 23:17:53 +0000 |
commit | e1308b0d84a661398f257c5f530677f20427639c (patch) | |
tree | c0b710d493ab182cae99ec7d58c63988d2b03042 /plugins/Db3x_mmap | |
parent | fe55aaa9b4f0c93acbab6e7205b28e0117ee7145 (diff) |
"un" prefix was the most common, until the 1970's when the "in" prefix shot past it by a long way
git-svn-id: http://svn.miranda-ng.org/main/trunk@15756 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap')
-rw-r--r-- | plugins/Db3x_mmap/src/dbtool/eventchain.cpp | 2 | ||||
-rw-r--r-- | plugins/Db3x_mmap/src/dbtool/settingschain.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Db3x_mmap/src/dbtool/eventchain.cpp b/plugins/Db3x_mmap/src/dbtool/eventchain.cpp index f92f30519f..3240b512a4 100644 --- a/plugins/Db3x_mmap/src/dbtool/eventchain.cpp +++ b/plugins/Db3x_mmap/src/dbtool/eventchain.cpp @@ -214,7 +214,7 @@ int CDb3Mmap::WorkEventChain(DWORD ofsContact, DBContact *dbc, int firstTime) }
if (dbeOld.cbBlob > 1024 * 1024 || dbeOld.cbBlob == 0) {
- cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Infeasibly large event blob: skipping"));
+ cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Unfeasibly large event blob: skipping"));
ofsThisEvent = dbeOld.ofsNext;
return ERROR_SUCCESS;
}
diff --git a/plugins/Db3x_mmap/src/dbtool/settingschain.cpp b/plugins/Db3x_mmap/src/dbtool/settingschain.cpp index 92c63c0b32..c706674ca0 100644 --- a/plugins/Db3x_mmap/src/dbtool/settingschain.cpp +++ b/plugins/Db3x_mmap/src/dbtool/settingschain.cpp @@ -43,7 +43,7 @@ int CDb3Mmap::WorkSettingsChain(DBContact *dbc, int firstTime) return ERROR_NO_MORE_ITEMS;
if (dbcsOld.cbBlob > 256 * 1024 || dbcsOld.cbBlob == 0) {
- cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Infeasibly large settings blob: skipping"));
+ cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Unfeasibly large settings blob: skipping"));
ofsThisSettings = dbcsOld.ofsNext;
return ERROR_SUCCESS;
}
|