gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r10112: Correct typo in enumerateObj


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10112: Correct typo in enumerateObject so that it can be used with Objects not
Date: Sun, 26 Oct 2008 09:34:23 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10112
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Sun 2008-10-26 09:34:23 +0100
message:
  Correct typo in enumerateObject so that it can be used with Objects not
  named 'o'.
modified:
  testsuite/actionscript.all/enumerate.as
=== modified file 'testsuite/actionscript.all/enumerate.as'
--- a/testsuite/actionscript.all/enumerate.as   2008-10-25 18:51:18 +0000
+++ b/testsuite/actionscript.all/enumerate.as   2008-10-26 08:34:23 +0000
@@ -100,7 +100,7 @@
 
 enumerateObj = function(object) {
    list = ""; 
-    for (el in o) {
+    for (el in object) {
         list += el + ",";
     }
     return list;


reply via email to

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