diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-26 15:19:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-26 15:19:44 +0000 |
commit | 324b246fb23cd518bdd1907985c695b8fc4f28d2 (patch) | |
tree | b41cb8a3e91484e1677f11e1a0693075cb8382f5 /protocols/JabberG/src/ui_utils.cpp | |
parent | 65cc377f4b4161dee01c43e0430ff7b236874839 (diff) |
minor code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@6241 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/ui_utils.cpp')
-rw-r--r-- | protocols/JabberG/src/ui_utils.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/ui_utils.cpp b/protocols/JabberG/src/ui_utils.cpp index 23f357adff..f4f7dfa7f7 100644 --- a/protocols/JabberG/src/ui_utils.cpp +++ b/protocols/JabberG/src/ui_utils.cpp @@ -250,7 +250,7 @@ void CDlgBase::AddControl(CCtrlBase *ctrl) void CDlgBase::NotifyControls(void (CCtrlBase::*fn)())
{
- for (int i = 0; i < m_controls.getCount(); i++)
+ for (int i=0; i < m_controls.getCount(); i++)
(m_controls[i]->*fn)();
}
@@ -1450,7 +1450,7 @@ void CCtrlFilterListView::FilterHighlight(TCHAR *str) {
TCHAR buf[256];
int count = GetItemCount();
- for (int i = 0; i < count; i++)
+ for (int i=0; i < count; i++)
{
bool found = false;
@@ -2216,7 +2216,7 @@ BOOL CCtrlPages::OnNotify(int /*idCtrl*/, NMHDR *pnmh) void CCtrlPages::OnDestroy()
{
int count = TabCtrl_GetItemCount(m_hwnd);
- for (int i = 0; i < count ; i++)
+ for (int i=0; i < count ; i++)
{
TCITEM tci = {0};
tci.mask = TCIF_PARAM;
|