summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_thread.cpp
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2020-07-18 22:49:44 +0300
committerdartraiden <wowemuh@gmail.com>2020-07-18 22:49:44 +0300
commit03c5d85e55546d30475dfac6bf0f183cc707898e (patch)
treef8167cdcab2ee475ddaa075cee95a939c420b431 /protocols/JabberG/src/jabber_thread.cpp
parentc4bd21ada7eb87b14ef79e075b943e0551061a8a (diff)
Jabber: no need to include protocol name into dialogue name
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rwxr-xr-xprotocols/JabberG/src/jabber_thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp
index 6f734a68a6..0c9d08cbc0 100755
--- a/protocols/JabberG/src/jabber_thread.cpp
+++ b/protocols/JabberG/src/jabber_thread.cpp
@@ -1877,7 +1877,7 @@ void CJabberProto::OnProcessRegIq(const TiXmlElement *node, ThreadData *info)
if (!mir_strcmp(XmlGetAttr(xNode, "xmlns"), JABBER_FEAT_DATA_FORMS)) {
g_pRegInfo = info;
- auto *pDlg = new CJabberFormDlg(this, xNode, "Jabber register new user", &CJabberProto::SetRegConfig, mir_strdup(XmlGetAttr(node, "from")));
+ auto *pDlg = new CJabberFormDlg(this, xNode, "Register new user", &CJabberProto::SetRegConfig, mir_strdup(XmlGetAttr(node, "from")));
if (info->conn.pDlg)
pDlg->SetParent(((CDlgBase*)info->conn.pDlg)->GetHwnd());
pDlg->SetCancel(&CJabberProto::CancelRegConfig);