r9327: Rename parent to fParent to prevent confusion with window.parent object.
authorDeryck Hodge <deryck@samba.org>
Tue, 16 Aug 2005 19:47:27 +0000 (19:47 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:33:24 +0000 (13:33 -0500)
(Thanks, Derrell, for the reminder.)
Rename child to fChild, to be consistent and maintain readability.

deryck
(This used to be commit 6040f9401eedb195aef160b3b58462a1a6728af7)

swat/esptest/registry.esp

index b02def6f8389dcb342a366bbabd412fcab64dab7..14e3173f2dd3b40d931ae4bcb1dfe534343df6ab 100644 (file)
@@ -43,25 +43,25 @@ call.run();
 
   <script type="text/javascript">
 
-function folder_list(parent, list) {
+function folder_list(fParent, list) {
        var i;
-       parent.populated = true;
-       parent.removeAll();
+       fParent.populated = true;
+       fParent.removeAll();
        for (i=0;i<list.length;i++) {
-               var child;
-               child = new QxTreeFolder(list[i]);
-               parent.add(child);
-               child.binding = parent.binding;
-               if (parent.reg_path == '\\\\') {
-                       child.reg_path = list[i];
+               var fChild;
+               fChild = new QxTreeFolder(list[i]);
+               fParent.add(fChild);
+               fChild.binding = fParent.binding;
+               if (fParent.reg_path == '\\\\') {
+                       fChild.reg_path = list[i];
                } else {
-                       child.reg_path = parent.reg_path + '\\\\' + list[i];
+                       fChild.reg_path = fParent.reg_path + '\\\\' + list[i];
                }
-               child.add(new QxTreeFolder('Working ...'));
-               child.addEventListener("click", function() { 
+               fChild.add(new QxTreeFolder('Working ...'));
+               fChild.addEventListener("click", function() { 
                        var el = this; folder_click(el); 
                });
-               parent.setOpen(1);
+               fParent.setOpen(1);
        }
 }