]> git.saurik.com Git - wxWidgets.git/blobdiff - src/ribbon/buttonbar.cpp
Fix the use of obsolete wxDD_NEW_DIR_BUTTON in wxOSX.
[wxWidgets.git] / src / ribbon / buttonbar.cpp
index d8acaa6e1146ee28781dfe0517b33a53a94098fa..7e25278de3b17b4457bd16be8212c6b70eb020e4 100644 (file)
@@ -1193,7 +1193,7 @@ wxRibbonButtonBarButtonBase *wxRibbonButtonBar::GetHoveredItem() const
 
 wxRibbonButtonBarButtonBase *wxRibbonButtonBar::GetItem(size_t n) const
 {
-    wxCHECK_MSG(n >= 0 && n < m_buttons.GetCount(), NULL, "wxRibbonButtonBar item's index is out of bound");
+    wxCHECK_MSG(n < m_buttons.GetCount(), NULL, "wxRibbonButtonBar item's index is out of bound");
     return m_buttons.Item(n);
 }