diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-10 13:49:11 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-10 13:49:11 +0000 |
commit | 73efaa00c6044d77a6c098bec38057b231ef8243 (patch) | |
tree | 07237735ddf83c6cb011188b6c4b067bdcd6b5e3 /protocols/JabberG/src/jabber_opttree.cpp | |
parent | 183f4dfbadce9c687c66e5377274a464f6c9a72f (diff) |
Jabber:
- these long static buffers replaced with CMString;
- some crazy memory allocations in chats also replaced with CMString;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@7577 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_opttree.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_opttree.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_opttree.cpp b/protocols/JabberG/src/jabber_opttree.cpp index c4e2d07612..ae063fcbbf 100644 --- a/protocols/JabberG/src/jabber_opttree.cpp +++ b/protocols/JabberG/src/jabber_opttree.cpp @@ -143,9 +143,9 @@ void CCtrlTreeOpts::OnInit() }
hItem = FindNamedItem(hSection, pItemName);
- if ( !sectionName || !hItem)
+ if (!sectionName || !hItem)
{
- if ( !hItem)
+ if (!hItem)
{
TVINSERTSTRUCT tvis = {0};
@@ -175,7 +175,7 @@ void CCtrlTreeOpts::OnInit() }
}
hItem = InsertItem(&tvis);
- if ( !sectionName)
+ if (!sectionName)
m_options[i]->m_hItem = hItem;
}
}
|