summaryrefslogtreecommitdiff
path: root/protocols/GmailNotifier
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-10-05 14:06:42 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-10-05 14:06:42 +0300
commit55c9a5eb7104f24342e121f7b949eaf4cc5557b5 (patch)
tree17c8524765c6f7b937cfbe5125449af388d2a93d /protocols/GmailNotifier
parent218cae2663874a0fe347e3db65ffb85b512307b5 (diff)
fixes #3707 (GmailNotifier: вместо пароля в базу пишется логин)
Diffstat (limited to 'protocols/GmailNotifier')
-rw-r--r--protocols/GmailNotifier/src/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/GmailNotifier/src/options.cpp b/protocols/GmailNotifier/src/options.cpp
index 35ba71cb30..b8b9a5955b 100644
--- a/protocols/GmailNotifier/src/options.cpp
+++ b/protocols/GmailNotifier/src/options.cpp
@@ -225,7 +225,7 @@ public:
g_plugin.setString(acc.hContact, "name", acc.name);
g_plugin.setString(acc.hContact, "Nick", acc.name);
- m_combo.GetTextA(acc.pass, _countof(acc.pass));
+ GetDlgItemTextA(m_hwnd, IDC_PASS, acc.pass, _countof(acc.pass));
g_plugin.setString(acc.hContact, "Password", acc.pass);
}