r21325: delete children in reverse order since the array is manipulated during the...
[Samba/gbeck.git] / webapps / qooxdoo-0.6.3-sdk / frontend / framework / source / class / qx / ui / basic / HorizontalSpacer.js
blob9db8f120644f5cfeabaa729a0cebeb20cf06d00a
1 /* ************************************************************************
3    qooxdoo - the new era of web development
5    http://qooxdoo.org
7    Copyright:
8      2004-2006 by 1&1 Internet AG, Germany, http://www.1and1.org
10    License:
11      LGPL 2.1: http://www.gnu.org/licenses/lgpl.html
13    Authors:
14      * Sebastian Werner (wpbasti)
15      * Andreas Ecker (ecker)
17 ************************************************************************ */
19 /* ************************************************************************
21 #module(ui_basic)
23 ************************************************************************ */
25 qx.OO.defineClass("qx.ui.basic.HorizontalSpacer", qx.ui.basic.Terminator,
26 function()
28   qx.ui.basic.Terminator.call(this);
30   this.setWidth("1*");
31 });