[PyKDE] QApplication.setStyle ()
Pete Ware
ware at cis.ohio-state.edu
Thu May 11 22:31:36 BST 2000
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 ()
More information about the PyQt
mailing list