Hi, when I try to run KApplication in Erics debugger mode, the program "terminates unexpectedly"
It works however with QApplication programs... any ideas? dennis PS here is an example #!/usr/bin/env python import sys from qt import * from kdecore import * from kdeui import * a=KApplication(sys.argv, "Program Name") w=QWidget() a.setMainWidget(w) a.setTopWidget(w) w.resize(200,100) w.show() a.exec_loop() _______________________________________________ PyKDE mailing list [email protected] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
