diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-11 16:23:36 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-11 16:23:36 +0000 |
commit | c559a18ca21a2a1fa3199c4bb60bcd031ec17134 (patch) | |
tree | 23a3716abd31956933bb8e01a90bff2c9eaf452b /protocols/JabberG/src/jabber_opt.cpp | |
parent | 764b106951b4c47cef929d17ca99e8f4a8165483 (diff) |
MS_UTILS_ENTERSTRING moved from Jabber to the core, cause it's very handy
git-svn-id: http://svn.miranda-ng.org/main/trunk@7593 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_opt.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_opt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_opt.cpp b/protocols/JabberG/src/jabber_opt.cpp index 14f3ca7cba..65ea059fc9 100644 --- a/protocols/JabberG/src/jabber_opt.cpp +++ b/protocols/JabberG/src/jabber_opt.cpp @@ -564,7 +564,7 @@ private: {
CMString buf;
TCHAR pass[512];
- if (!m_proto->EnterString(buf, TranslateT("Confirm password"), JES_PASSWORD))
+ if (!m_proto->EnterString(buf, TranslateT("Confirm password"), ESF_PASSWORD))
return;
m_txtPassword.GetText(pass, SIZEOF(pass));
@@ -1849,7 +1849,7 @@ private: void btnRegister_OnClick(CCtrlButton *)
{
CMString buf;
- if (!m_proto->EnterString(buf, TranslateT("Confirm password"), JES_PASSWORD))
+ if (!m_proto->EnterString(buf, TranslateT("Confirm password"), ESF_PASSWORD))
return;
TCHAR pass[512];
|