Fixed SELECTION_CONDITIONS::lessThanFunc().

This commit is contained in:
Maciej Suminski 2015-06-05 17:48:59 +02:00
parent 16daa04518
commit f202e5318c
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ bool SELECTION_CONDITIONS::moreThanFunc( const SELECTION& aSelection, int aNumbe
bool SELECTION_CONDITIONS::lessThanFunc( const SELECTION& aSelection, int aNumber )
{
return aSelection.Size() > aNumber;
return aSelection.Size() < aNumber;
}