bug-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug awt/24731] New: ScrollPane.addNotify() does not work


From: freebeans at xqb dot biglobe dot ne dot jp
Subject: [Bug awt/24731] New: ScrollPane.addNotify() does not work
Date: 8 Nov 2005 11:10:57 -0000

ScrollPane.addNotify() checks Component.isDisplayable()
---
public void
addNotify()
{
  if (!isDisplayable ())
    return;
...
---
When peer is null, Component.isDisplayable() returns false.
It should be
---
public void
addNotify()
{
  if (peer != null)
    return;
  ...
---


-- 
           Summary: ScrollPane.addNotify() does not work
           Product: classpath
           Version: 0.19
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: awt
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: freebeans at xqb dot biglobe dot ne dot jp


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24731





reply via email to

[Prev in Thread] Current Thread [Next in Thread]