// this is a Windows limitation
wxASSERT_MSG( (nFields > 0) && (nFields < 255), "too many fields" );
- wxStatusBarBase::SetFieldsCount(nFields, widths);
-
- MSWUpdateFieldsWidths();
-
// keep in synch also our m_tooltips array
// reset all current tooltips
}
// shrink/expand the array:
- m_tooltips.resize(m_panes.GetCount(), NULL);
+ m_tooltips.resize(nFields, NULL);
+
+ wxStatusBarBase::SetFieldsCount(nFields, widths);
+
+ MSWUpdateFieldsWidths();
}
void wxStatusBar::SetStatusWidths(int n, const int widths[])
int *pWidths = new int[count];
int nCurPos = 0;
- for ( int i = 0; i < count; i++ )
+ int i;
+ for ( i = 0; i < count; i++ )
{
nCurPos += widthsAbs[i] + extraWidth;
pWidths[i] = nCurPos;
wxLogLastError("StatusBar_SetParts");
}
- delete [] pWidths;
-
+ // Now that all parts have been created, set their text.
+ for ( i = 0; i < count; i++ )
+ {
+ DoUpdateStatusText(i);
+ }
- // FIXME: we may want to call DoUpdateStatusText() here since we may need to (de)ellipsize status texts
+ delete [] pWidths;
}
void wxStatusBar::DoUpdateStatusText(int nField)