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