Re: [Gnustep-cvs] r28206 - in /libs/gui/trunk: ChangeLog Source/GSWindowDecorationView.m

2009-04-13 Thread Fred Kiefer
With fallback values I meant you added 0 initialization. What I wanted to find out was in which code path we could end up with this values not getting assigned to. In the meantime I spend a lot of thinking on where this could happen (all backends always assign to these values), the only idea I have

Re: [Gnustep-cvs] r28206 - in /libs/gui/trunk: ChangeLog Source/GSWindowDecorationView.m

2009-04-13 Thread Gregory Casamento
The code (as it was previously) was initializing the values to random values. It was causing an over abundance of "given negative height/width" errors to appear when they didn't have to. I'm not sure what you mean by a fallback value... do you mean something that is non-zero? GC On Mon, Apr 13,

Re: [Gnustep-cvs] r28206 - in /libs/gui/trunk: ChangeLog Source/GSWindowDecorationView.m

2009-04-13 Thread Fred Kiefer
Gregory Casamento wrote: > Author: gcasa > Date: Mon Apr 13 01:17:49 2009 > New Revision: 28206 > > URL: http://svn.gna.org/viewcvs/gnustep?rev=28206&view=rev > Log: > * Source/GSWindowDecorationView.m: initialize offsets to prevent > negative value warnings suggested by Doug. > > Mod