js:

qx.html.Iframe.js
    getName : function() {
      return this.setAttribute("name");
    },
Shouldn't this to be
    getName : function() {
      return this.getAttribute("name");
    },
?

documentation:

qx.ui.tree.AbstractTreeItem.js:
    /**
     * The number of piel to indent the tree item for each level.
     */
    indent :
    {
      check : "Integer",
      init : 19,
      apply : "_applyIndent",
      themeable : true
    },
should be:
     * The number of pixels to indent the tree item for each level.

Cheers
- Petr

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to