diff options
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];
|