X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/53b6d7a29879a67a54e1f26e77a0697fecacf839..2190f6aa153416d1c225532bb026df98b3e273ad:/src/common/statbar.cpp diff --git a/src/common/statbar.cpp b/src/common/statbar.cpp index e1c4fd3dff..36f0ac976e 100644 --- a/src/common/statbar.cpp +++ b/src/common/statbar.cpp @@ -35,7 +35,7 @@ #include "wx/listimpl.cpp" WX_DEFINE_LIST(wxListString) -const wxChar wxStatusBarNameStr[] = wxT("statusBar"); +const char wxStatusBarNameStr[] = "statusBar"; // ============================================================================ // wxStatusBarBase implementation @@ -222,12 +222,21 @@ wxArrayInt wxStatusBarBase::CalculateAbsWidths(wxCoord widthTotal) const { if ( m_nFields ) { - // default: all fields have the same width - int nWidth = widthTotal / m_nFields; - for ( int i = 0; i < m_nFields; i++ ) + // Default: all fields have the same width. This is not always + // possible to do exactly (if widthTotal is not divisible by + // m_nFields) - if that happens, we distribute the extra pixels + // among all fields: + int widthToUse = widthTotal; + + for ( int i = m_nFields; i > 0; i-- ) { - widths.Add(nWidth); + // divide the unassigned width evently between the + // not yet processed fields: + int w = widthToUse / i; + widths.Add(w); + widthToUse -= w; } + } //else: we're empty anyhow }