Hey sebastian!
i found out, that under some circumstances there is a problem assigning
 
this._window.closed.
 
i found out, that this._window is NOT NULL, but assigning this._window.closed opens a uggly system-window asking to open the debug window.
 
if you replace
 
if (this._window.opened) {...
 
with
 
    var tmp = true;
    try
    {
        tmp = this._window.closed;
    }
    catch(ex) {};
   
    if (tmp) {...
 
 
everything works fine.
 
sorry, that i cant send you a patch, because i have freezed qooxdoo (from december) and "lost" the source. i only have the large qooxdoo file.
 
Olli
 
P.S: if it not clear, hat i mean, feel free to ask

 

==================================================
Diplom-Informatiker
Oliver Vogel
Geschaeftsfuehrer

Meins und Vogel GmbH  E-Mail: [EMAIL PROTECTED]
Esslinger Str. 45     Tel.:   +49 (7153) 6136-20
                      Fax:    +49 (7153) 6136-99
D 73207 Plochingen    http://www.muv.com/

Handelsregister: Esslingen am Neckar HRB 3536
Geschäftsführer: Dipl.-Inf. Klaus  Meins
                 Dipl.-Inf. Oliver Vogel
==================================================
"wer Rechtschreibfehler findet darf sie behalten"

 

Reply via email to