]> git.saurik.com Git - wxWidgets.git/commitdiff
Bool replaced by bool
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 5 Jun 1998 14:46:58 +0000 (14:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 5 Jun 1998 14:46:58 +0000 (14:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/dynarray.cpp

index cf2334db5797d5aaa1c0cf1eeb40a9e4970b977c..eb67d34504bf1846d33f7075d20a9e9691325fe0 100644 (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 ) {