diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 10:24:40 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 10:24:40 +0000 |
commit | a371c34e0720a4d41a81da6b0cede16c5cf8779d (patch) | |
tree | 88da0eeb2955d8e20618be4a57de43c08e9888b9 /protocols/JabberG/src | |
parent | b499ebc740aa5480be013d40e0d8097066800642 (diff) |
replace lstrlen to mir_tstrlen
git-svn-id: http://svn.miranda-ng.org/main/trunk@13749 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src')
-rw-r--r-- | protocols/JabberG/src/obsoleted/jabber_form2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/obsoleted/jabber_form2.cpp b/protocols/JabberG/src/obsoleted/jabber_form2.cpp index bd8fa20425..02400de029 100644 --- a/protocols/JabberG/src/obsoleted/jabber_form2.cpp +++ b/protocols/JabberG/src/obsoleted/jabber_form2.cpp @@ -777,7 +777,7 @@ public: CreateLabel();
int i, length = 1;
for (i = 0; i < m_field->GetValueCount(); ++i)
- length += lstrlen(m_field->GetValue(i)) + 2;
+ length += mir_tstrlen(m_field->GetValue(i)) + 2;
TCHAR *str = (TCHAR *)mir_alloc(sizeof(TCHAR) * length);
*str = 0;
|