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 ()



Reply via email to