Question about _windowWillClose:

2013-08-15 Thread Germán Arias
In _windowWillClose: at NSApplication, why not use GSAllWindows() instead GSOrderedWindows()?. This make more sense. Germán. ___ Gnustep-dev mailing list Gnustep-dev@gnu.org https://lists.gnu.org/mailman/listinfo/gnustep-dev

Re: Question about _windowWillClose:

2013-08-15 Thread Wolfgang Lux
Germán Arias wrote: In _windowWillClose: at NSApplication, why not use GSAllWindows() instead GSOrderedWindows()?. This make more sense. You cannot simply replace GSOrderedWindows by GSAllWindows (incidentally, I think you should use [self windows] instead of GSAllWindows). The purpose of

Re: Question about _windowWillClose:

2013-08-15 Thread Germán Arias
On 2013-08-15 01:31:26 -0600 Wolfgang Lux wolfgang@gmail.com wrote: Germán Arias wrote: In _windowWillClose: at NSApplication, why not use GSAllWindows() instead GSOrderedWindows()?. This make more sense. You cannot simply replace GSOrderedWindows by GSAllWindows (incidentally, I