'int' object is not callable in an threaded app

2007-05-22 Thread king kikapu
Hi, i have a problem with the following piece of code that id just drive me nuts (from the morning...) I think is more Python specific than Qt, folks from Qt forum have already give me directions of how to do it but that Python error message is just impossible for me to figure out. And i am sure

RE: 'int' object is not callable in an threaded app

2007-05-22 Thread Hamilton, William
From: king kikapu Hi, i have a problem with the following piece of code that id just drive me nuts (from the morning...) I think is more Python specific than Qt, folks from Qt forum have already give me directions of how to do it but that Python error message is just impossible for me

Re: 'int' object is not callable in an threaded app

2007-05-22 Thread king kikapu
It appears that worker.start gets set to the result of count.ui.spFrom.value(). If that result is an int, then worker.start() is going to generate the TypeError you received. Did you actually mean to call worker.run() instead? --- -Bill Hamilton Some friend pointed out to me an hour