Hi Nick,
>
> One other thing that I forgot to check. I have a button that appears 
> when using a source build, and since IS_SOURCE seems to have been 
> removed, is the the following a reasonable alternative?
>
>     qx.core.Setting.get("qx.minLogLevel") < 300
We have turned IS_SOURCE into the setting "qx.isSource" to make it more 
consistent. You can use

if (qx.core.Setting.get("qx.isSource")) {... }

One other alternative os using the "qx.debug" variant 
(http://qooxdoo.org/documentation/user_manual/variants). If you use the 
following code

if (qx.core.Variant.isSet("qx.debug", "on")) { ... }

The code inside the body of the if statement can be completey removed 
from the build. This can be controlled using the Makefile variable 
|APPLICATION_OPTIMIZE_REMOVE_DEBUG (true by default).

Best Fabian
|

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to