Bug 32863 - JLabel.setCursor does not work
Summary: JLabel.setCursor does not work
Status: UNCONFIRMED
Alias: None
Product: classpath
Classification: Unclassified
Component: swing (show other bugs)
Version: 0.95
: P3 normal
Target Milestone: ---
Assignee: Roman Kennke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-23 09:36 UTC by Debian GCC Maintainers
Modified: 2008-01-23 11:44 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Debian GCC Maintainers 2007-07-23 09:36:43 UTC
[forwarded from http://bugs.debian.org/399833]

seen with GCC trunk 20070720 (cp-0.95)

import javax.swing.*;
import java.awt.*;
public class Swing{
    public static void main (String[] args){
        JFrame frame = new JFrame ("Premier programme Swing");
        JLabel l = new JLabel ("Bonjour le monde !");
        l.setCursor (new Cursor (Cursor.WAIT_CURSOR));
        frame.getContentPane().add (l);
        frame.setSize (200, 200);
        frame.setVisible (true);
    }
}
Comment 1 Debian GCC Maintainers 2008-01-23 11:44:39 UTC
this appears to be fixed in classpath-0.96

  Matthias