> On Sun, Jul 19, 2009 at 6:44 PM, Martin Edmund
> Sevior<martines@unimelb.edu.au> wrote:
>>
>> HI Aditya,
>>
>> Please don't use "or" in boolean operations. Use the conventional C "||"
>>
>> ie,
>> if (row < 0 or row > getNumRows())
>>
>> should be:
>>
>> if (row < 0 || row > getNumRows())
>>
>> etc.
Done.
Received on Mon Jul 20 05:42:52 2009
This archive was generated by hypermail 2.1.8 : Mon Jul 20 2009 - 05:42:52 CEST