diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-09 18:25:12 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-09 18:25:12 +0000 |
commit | 79e72b2ecb9b6c2e3dd5b6b87c9c8634ab5463f2 (patch) | |
tree | 5cbc88c7db5d6741e42c689cf629bfcab3596fcd /plugins/DbEditorPP/src/settinglist.cpp | |
parent | 770f113c5b67a9dd977b0dd1e980d1c5606e49a5 (diff) |
English US correction (patch by RMN)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6420 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src/settinglist.cpp')
-rw-r--r-- | plugins/DbEditorPP/src/settinglist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DbEditorPP/src/settinglist.cpp b/plugins/DbEditorPP/src/settinglist.cpp index 69774bd4b7..1d87461333 100644 --- a/plugins/DbEditorPP/src/settinglist.cpp +++ b/plugins/DbEditorPP/src/settinglist.cpp @@ -125,7 +125,7 @@ void additem(HWND hwnd2Settings,HANDLE hContact, char* module, char* setting, in {
int j;
if (!(data = (char*)mir_realloc(data, 3*(dbv.cpbVal+1)+10)))
- {msg(Translate("Couldnt allocate enough memory!"), modFullname); return;}
+ {msg(Translate("Couldn't allocate enough memory!"), modFullname); return;}
data[0] = '\0';
for (j=0; j<dbv.cpbVal; j++)
{
@@ -673,7 +673,7 @@ void EditLabel(HWND hwnd2List, int item, int subitem) char tmp[16];
char *data = (char*)_alloca(3*(dbv.cpbVal+1)+10);
- if (!data) {msg(Translate("Couldnt allocate enough memory!"), modFullname); return;}
+ if (!data) {msg(Translate("Couldn't allocate enough memory!"), modFullname); return;}
data[0] = '\0';
for(j=0; j<dbv.cpbVal; j++)
|