On 03/03/2010 01:03 PM, Peter Schneider wrote:
> Hi Thomas,
> 
> I am currently able to get the error again.
> 
> Attached you will find the contents of a "generate -v -l source.log source"
> run, but I think this doesn't help much...

In fact, it did. Actually, it made me realize that I overlooked
something in your initial mail. In that you wrote:

        "! Unknown global symbol referenced: qx.ui.basic        
(infodesk.ui.info.WinAbout:68)"

        It seems, that after a "translation run" the qx namespace is unknown :-/

That tricked me into believing that more - and particularly classes -
would be missing. But "qx.ui.basic" is only a package, which you
probably happen to use in your code. But packages are currently not
considered "known symbols" (there is a bug open to amend for that), so
if you refer to them in your code you'll get this warning. Nothing to
worry about, you can fix it if you like with a #ignore() pragma.

Same with the generator log you attached. It's only complain is:

        ! Unknown global symbol referenced: qx.ui.layout
(infodesk.ui.user.Preferences:67)

Again, qx.ui.layout is a package, not a class, so this is not really a
defect in your code. Your code should work just fine, and you can either
choose to ignore the warning, or (better) add #ignore() entries in your
application classes (like here infodesk.ui.user.Preferences).

There is also no need to clear the cache. The only unpleasant thing for
me is that this warning doesn't show up all the time (as it should). I
thought I had fixed that :-\ .

Cheers,
T.

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to