The following program core dumps when the setStyle() is there (sip
0.11, qt 2.0.1, solaris 2.6):
--pete
#! /usr/bin/env python
import qt
import sys
def test ():
app = qt.QApplication (sys.argv)
app.setStyle (qt.QMotifStyle ())
main = qt.QMainWindow (None, '')
w = qt.QPushButton ('Testing', main, '')
app.setMainWidget (main)
main.show ()
return app
if __name__ == '__main__':
app = test ()
print 'starting'
app.exec_loop ()
- Re: [PyKDE] QApplication.setStyle () Pete Ware
- Re: [PyKDE] QApplication.setStyle () Phil Thompson
- Re: [PyKDE] QApplication.setStyle () Boudewijn Rempt
- Re: [PyKDE] QApplication.setStyle () Pete Ware
