From 324b246fb23cd518bdd1907985c695b8fc4f28d2 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 26 Sep 2013 15:19:44 +0000 Subject: minor code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@6241 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/JabberG/src/ui_utils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols/JabberG/src/ui_utils.cpp') 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; -- cgit v1.2.3