[PyKDE] Losing Timers

Miller, Douglas dmiller at JFTI.com
Wed Jul 9 16:09:01 BST 2003


A problem of losing Timer Events on the Qt interest email archive was solved
this way.

Set 'qt_win_use_simple_timers' in qapplication_win.cpp to true. 

The following snippet of code solved it:

Q_EXPORT extern bool qt_win_use_simple_timers;

void someInitFunction()
{
    ...
    qt_win_use_simple_timers=true;
}


Does PyQt allow access to this variable so I can set it? Or how would this
best be implemented? Please give me some guidance.  Thanks.




More information about the PyQt mailing list