]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed a bug in Application.setTheme
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>
Mon, 29 Jan 2007 16:27:07 +0000 (16:27 +0000)
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>
Mon, 29 Jan 2007 16:27:07 +0000 (16:27 +0000)
svn changeset:365/svn branch:toolkit

src/com/itmill/toolkit/Application.java

index 8197e910ed4e35876eed5e6437c7d44d11970403..5ac84d1be7a69258c6e651b165ea25b9f93924e1 100644 (file)
@@ -423,7 +423,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener
                this.theme = theme;
 
                // Ask windows to update themselves
-               for (Iterator i = getWindows().iterator(); i.hasNext();)
+               for (Iterator i = toBeUpdated.iterator(); i.hasNext();)
                        ((Window) i.next()).requestRepaint();
        }