Hi Markus, > I added one format to my static format > class (see posting few days ago) inside the "defer" method.
which format did you add, can give more details? Does the message go away if you move it out of the "defer" method or remove it completely? Things I figured out (not much, though): * the error message comes likely from: https://github.com/qooxdoo/qooxdoo/blob/master/framework/source/class/qx/event/Manager.js#L598 (there are two occurrences in this class) * every value change of the property "locale" of the class "qx.locale.Manager" fires a "changeLocale" event. https://github.com/qooxdoo/qooxdoo/blob/master/framework/source/class/qx/locale/Manager.js#L167 * back then (28. Feb.) you wrote that you are using "qx.util.format.DateFormat". This class uses "qx.locale.Manager" but actually doesn't change the locale value, which could produce this warning. But the constructor of "qx.locale.Manager" triggers the "changeLocale" event apparently by himself (due to "setLocale()"), maybe this evokes your problem: https://github.com/qooxdoo/qooxdoo/blob/master/framework/source/class/qx/locale/Manager.js#L62 Unfortunately I couldn't reproduce your warning by simply instantiating "qx.util.format.DateFormat" so maybe I'm wrong. :/ Regards Richard ------------------------------------------------------------------------------ Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the endpoint security space. For insight on selecting the right partner to tackle endpoint security challenges, access the full report. http://p.sf.net/sfu/symantec-dev2dev _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
