bug-classpath
[Top][All Lists]
Advanced

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

[Bug awt/28699] New: Menu.insert() does not work correctly


From: freebeans at xqb dot biglobe dot ne dot jp
Subject: [Bug awt/28699] New: Menu.insert() does not work correctly
Date: 11 Aug 2006 13:23:13 -0000

line 298:
      for (int i = index; i < count; i++)
        peer.addItem((MenuItem) items.elementAt (i));

should be:
      for (int i = index + 1; i <= count; i++)
        peer.addItem((MenuItem) items.elementAt (i));


-- 
           Summary: Menu.insert() does not work correctly
           Product: classpath
           Version: 0.92
            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=28699





reply via email to

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