summaryrefslogtreecommitdiff
path: root/plugins/Msg_Export/src
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2014-01-08 20:44:36 +0000
committerDart Raiden <wowemuh@gmail.com>2014-01-08 20:44:36 +0000
commit52190c8e98d4d4a44727b9950cae40a6db270464 (patch)
tree1c49ca89551c3caf28f26142552749592c0dc17e /plugins/Msg_Export/src
parent3ae65b1dfe3d4152190e822b3441cbf72c7da83f (diff)
db => database
git-svn-id: http://svn.miranda-ng.org/main/trunk@7556 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Msg_Export/src')
-rwxr-xr-xplugins/Msg_Export/src/utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Msg_Export/src/utils.cpp b/plugins/Msg_Export/src/utils.cpp
index 877ce7d7c6..64fbf69bb9 100755
--- a/plugins/Msg_Export/src/utils.cpp
+++ b/plugins/Msg_Export/src/utils.cpp
@@ -288,7 +288,7 @@ tstring _DBGetStringW(HANDLE hContact,const char *szModule,const char *szSetting
{
if (dbv.type != DBVT_WCHAR)
{
- MessageBox(NULL, TranslateT("DB: Attempt to get wrong type of value, string"), MSG_BOX_TITEL, MB_OK);
+ MessageBox(NULL, TranslateT("Database: Attempt to get wrong type of value, string"), MSG_BOX_TITEL, MB_OK);
ret = pszError;
}
else
@@ -310,7 +310,7 @@ string _DBGetStringA(HANDLE hContact,const char *szModule,const char *szSetting,
{
if (dbv.type != DBVT_ASCIIZ)
{
- MessageBox(NULL, TranslateT("DB: Attempt to get wrong type of value, string"), MSG_BOX_TITEL, MB_OK);
+ MessageBox(NULL, TranslateT("Database: Attempt to get wrong type of value, string"), MSG_BOX_TITEL, MB_OK);
ret = pszError;
}
else