Use Boolean expression instead of conditional statement to get Boolean value.

This commit is contained in:
Artur Wieczorek
2015-08-27 19:17:49 +02:00
parent d0eea355fa
commit bbecebd4ba

View File

@@ -2451,9 +2451,7 @@ protected:
bool HasCell( unsigned int column ) const
{
if ( m_cells.size() > column )
return true;
return false;
return m_cells.size() > column;
}
void InitAfterAdded( wxPropertyGridPageState* pageState,