Message5431

Author WA
Recipients WA
Date 2010-01-13.10:58:09
SpamBayes Score 1.1116815e-05
Marked as misclassified No
Message-id <1263380290.04.0.392277276861.issue1540@psf.upfronthosting.co.za>
In-reply-to
Content
This code crashes always on my machine:

from javax.swing import *

class PanelTest(JPanel):
    def paintComponent(self, g):
        super(PanelTest, self).paintComponent(g)

if __name__ == '__main__':
    frame = JFrame("Jython Swing Test")
    frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE)
    pnl = PanelTest()
    frame.add(pnl)
    frame.pack()
    frame.setVisible(True)
History
Date User Action Args
2010-01-13 10:58:10WAsetrecipients: + WA
2010-01-13 10:58:10WAsetmessageid: <1263380290.04.0.392277276861.issue1540@psf.upfronthosting.co.za>
2010-01-13 10:58:09WAlinkissue1540 messages
2010-01-13 10:58:09WAcreate