Hi, after a couple of updates from qooxdoo SVN, when i try to add an object
to the root document i receive this warning message:
"The method 'function (source)' of class 'unknown' is deprecated: Use
clone() instead."
When i put the focus in the inserted object i receive the warning.
I use this svn:
https://qooxdoo.svn.sourceforge.net/svnroot/qooxdoo/trunk/qooxdoo

This is a little example of my problem:
qx.Class.define("example.Application",
{
    extend : qx.application.Standalone,
    members :
    {
        main : function()
        {
            this.base(arguments);
            if (qx.core.Variant.isSet("qx.debug", "on"))
            {
              qx.log.appender.Native;
              qx.log.appender.Console;
            }
            var doc = this.getRoot();
            doc.add(new qx.ui.form.TextField());
        }
    }
});

Grettings.
------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to