mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-26 04:14:06 +08:00
* javax/swing/RepaintManager.java
(paintDirtyRegions): Use entrySet(), not values(). From-SVN: r83025
This commit is contained in:
parent
8204210bd6
commit
ff6ea709cb
@ -1,3 +1,8 @@
|
||||
2004-06-12 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* javax/swing/RepaintManager.java
|
||||
(paintDirtyRegions): Use entrySet(), not values().
|
||||
|
||||
2004-06-10 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* jni.cc (_Jv_JNI_GetAnyMethodID): Add name and signature to
|
||||
|
@ -438,7 +438,7 @@ public class RepaintManager
|
||||
dirtyComponents.clear();
|
||||
|
||||
// step 2: paint those roots
|
||||
Iterator i = roots.values().iterator();
|
||||
Iterator i = roots.entrySet().iterator();
|
||||
while(i.hasNext())
|
||||
{
|
||||
Map.Entry ent = (Map.Entry) i.next();
|
||||
|
Loading…
Reference in New Issue
Block a user