- wxCHECK_MSG( IsValid(), FALSE, _T("must successfully Compile() first") );
- wxCHECK_MSG( m_nMatches, FALSE, _T("can't use with wxRE_NOSUB") );
- wxCHECK_MSG( m_Matches, FALSE, _T("must call Matches() first") );
- wxCHECK_MSG( index < m_nMatches, FALSE, _T("invalid match index") );
+ wxCHECK_MSG( IsValid(), false, _T("must successfully Compile() first") );
+ wxCHECK_MSG( m_nMatches, false, _T("can't use with wxRE_NOSUB") );
+ wxCHECK_MSG( m_Matches, false, _T("must call Matches() first") );
+ wxCHECK_MSG( index < m_nMatches, false, _T("invalid match index") );