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