Re: Patch: NSProcessInfo

2004-01-10 Thread Adam Fedor
On Mon, 2003-12-22 at 20:58, Sheldon Gill wrote: > On going through the code in my file system effort I came across some > coding/indenting violations which I've fixed: Applied. thanks. ___ Bug-gnustep mailing list [EMAIL PROTECTED] http://mail.gnu.or

Re: update for Locale.aliases

2004-01-10 Thread Adam Fedor
On Sun, 2003-12-07 at 08:44, Bruno Haible wrote: > Hi, > > The example showing the use GNU gettext in GNUstep didn't build any more after > some zealous translators provided translations for Catalan and Simplified > Chinese - because the Locale.aliases file doesn't support these languages. > To fi

Re: NSCell -_nonAutoreleasedTypingAttributes minor change.

2004-01-10 Thread Alexander Malmberg
Michael Hanni wrote: > Hi, > > Seemingly the baseline for string drawing in controls is one pixel too > low. Maybe I'm seeing things, but this small patch for NSCell makes > these strings center a little better. Some extra research might be > necessary. Most likely, yes, it needs to be investigat

[PATCH]: Window ordering fixes

2004-01-10 Thread Adam Fedor
Since gnustep-cvs isn't working... Commiting these patches: 2003-11-26 Adam Fedor <[EMAIL PROTECTED]> * orderFront fixes * Source/NSWindow.m (-orderFront:): Remove NSApp isActive check. (-orderFrontRegardless): Update for special case (otherWin=-1) (-or

[PATCH]: Prevent orderwindow from making window key.

2004-01-10 Thread Adam Fedor
Index: Headers/x11/XGGeneric.h === RCS file: /cvsroot/gnustep/gnustep/core/back/Headers/x11/XGGeneric.h,v retrieving revision 1.4 diff -u -r1.4 XGGeneric.h --- Headers/x11/XGGeneric.h 5 Jul 2003 23:49:59 - 1.4 +++ Headers/x11/XGGe

Re: NSMenu menu position saving bug (PATCH)

2004-01-10 Thread Michael Hanni
Hi Richard, On 2004-01-10 03:01:44 -0700 Richard Frith-Macdonald <[EMAIL PROTECTED]> wrote: I think I have found the problem. I've committed a fix for the base library to cvs. Please could you update and see if it works for you. Excellent! This does indeed fix the bug. The string is being sav

Re: NSMenu menu position saving bug (PATCH)

2004-01-10 Thread Richard Frith-Macdonald
On 10 Jan 2004, at 09:52, Richard Frith-Macdonald wrote: This is on a powerpc machine, debian linux, gcc 3.3.3-0pre1, and libc6 2.3.2.ds1-10. Any ideas? Just one ... I think powerpc systems use a different byte order from intel systems ... maybe there is some problem with accessing the wrong by

Re: NSMenu menu position saving bug (PATCH)

2004-01-10 Thread Richard Frith-Macdonald
On 10 Jan 2004, at 16:23, Michael Hanni wrote: Hi, On 2004-01-10 01:59:05 -0700 Richard Frith-Macdonald <[EMAIL PROTECTED]> wrote: On 10 Jan 2004, at 15:13, Michael Hanni wrote: so the key was always nil (interestingly enough, if I manually edited the key in the defaults to be \033Info it work

Re: NSMenu menu position saving bug (PATCH)

2004-01-10 Thread Michael Hanni
Hi, On 2004-01-10 01:59:05 -0700 Richard Frith-Macdonald <[EMAIL PROTECTED]> wrote: On 10 Jan 2004, at 15:13, Michael Hanni wrote: so the key was always nil (interestingly enough, if I manually edited the key in the defaults to be \033Info it worked properly). I changed this to: So it sounds

Re: NSMenu menu position saving bug (PATCH)

2004-01-10 Thread Richard Frith-Macdonald
On 10 Jan 2004, at 15:13, Michael Hanni wrote: Hi there, The menu position saving code has not worked for me for quite awhile. After being prodded by Alex I chased this bug down. Attached is a patch. Basically the problem is with this code: return [NSString stringWithFormat: @"\033%@", [self t

NSCell -_nonAutoreleasedTypingAttributes minor change.

2004-01-10 Thread Michael Hanni
Hi, Seemingly the baseline for string drawing in controls is one pixel too low. Maybe I'm seeing things, but this small patch for NSCell makes these strings center a little better. Some extra research might be necessary. Cheers, Michael Index: NSCell.m ==

NSMenu menu position saving bug (PATCH)

2004-01-10 Thread Michael Hanni
Hi there, The menu position saving code has not worked for me for quite awhile. After being prodded by Alex I chased this bug down. Attached is a patch. Basically the problem is with this code: return [NSString stringWithFormat: @"\033%@", [self title]]; //NSMenu.m ~155 On my machine this wou