Hi Fabian,

> [...]
> This is best explained with a snipplet of code:
> 
>         txt = new String(txt);
>         txt.args = args;
>         txt.messageId = messageId;
> 
> [...]

Does this mean, a application programmer can not write this anymore? :

  var label = new qx.ui.basic.Label(this.tr("Settings"));

and has to do something like this? :

  var txt = new String("Settings");
  txt.messageId = "id_settings";
  var label = new qx.ui.basic.Label(txt);

or am I just to pessimistic and some kind of static class member like tr()
will still be available?

Maybe it's just me, but I don't like the 2nd example ...

this is just *my* 2 cents; So anybody, please feel free to see it this way ;)

Best Kuddel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to