Bool replaced by bool

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-06-05 14:46:58 +00:00
parent bc7665d447
commit 05fafecd1a

View File

@ -147,7 +147,7 @@ void wxBaseArray::Alloc(uint uiSize)
}
// searches the array for an item (forward or backwards)
int wxBaseArray::Index(long lItem, Bool bFromEnd) const
int wxBaseArray::Index(long lItem, bool bFromEnd) const
{
if ( bFromEnd ) {
if ( m_uiCount > 0 ) {