On 6 Jun 2009, at 19:46, Vitaut wrote:

>>> int main(){
>>> Window win(800, 500, "fl_pm v. 0.001");
>>> win.begin();
>>>     for(short i = 1; i>20; i++){
>>
>> Oops! Say hello to typo   ^^
> Sorry, I didn't understand.


There is a typo in your code. That for loop says:

  "for i = 1, while i is greater than 20...."

Now: if i is == 1, it can not be greater than 20.

So: Your for loop never executes. No input widgets are ever created.  
That is why the do not appear.




_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to