PDA

View Full Version : Run application in background



raulftang
20th April 2007, 11:51
I'm developing an application based on greenphone.
We want the application running in the background to watch some events. How can I implement this?
QWiget::hide() seems just to exit the application.

jacek
21st April 2007, 23:56
Try setting the quitOnLastWindowClosed (http://doc.trolltech.com/4.2/qapplication.html#quitOnLastWindowClosed-prop) property to false.

raulftang
24th April 2007, 10:29
Thanks,
I'll try