]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/statusbr.cpp
concentrating content and structure region calculations
[wxWidgets.git] / src / generic / statusbr.cpp
index 0b6b9e8580daf4c020ae924a094d06fff11e2d8d..55eb58cc4f1338b64176025cf865e2c43d8bca1d 100644 (file)
@@ -133,12 +133,16 @@ void wxStatusBarGeneric::SetStatusText(const wxString& text, int number)
     wxCHECK_RET( (number >= 0) && (number < m_nFields),
                  _T("invalid status bar field index") );
 
-    m_statusStrings[number] = text;
+    wxString oldText = m_statusStrings[number];
+    if (oldText != text)
+    {
+        m_statusStrings[number] = text;
 
-    wxRect rect;
-    GetFieldRect(number, rect);
+        wxRect rect;
+        GetFieldRect(number, rect);
 
-    Refresh( TRUE, &rect );
+        Refresh( TRUE, &rect );
+    }
 }
 
 wxString wxStatusBarGeneric::GetStatusText(int n) const