Re: Confusion in instructions on sending fixes in "reporting bugs" webpage

2017-10-29 Thread Graham Lee
It also makes it easier to contribute, as you don't end up wondering about a weird requirement and ensuring that your ChangeLog diff is unstaged when committing :) On 29/10/2017 14:46, Ivan Vučica wrote: http://www.gnustep.org/developers/bugs.html Quoting: """ Sending fixes Actually fixing

Re: [proposed patch] GORM and hi-dpi

2017-02-05 Thread Graham Lee
Hi Fred, thanks for giving feedback. On 05/02/17 19:15, Fred Kiefer wrote: I think this patch is wrong and any similar patches for the other panels wouldn’t help. The method userSpaceScaleFactor was added by Eric six years ago and it should work automatically without any specific adjustments

Fwd: [proposed patch] GORM and hi-dpi

2017-02-05 Thread Graham Lee
[sorry, I sent this to bug-gnustep, then was told that this was a better forum...] From: Graham Lee To: Sent: 2/5/2017 12:27 PM Subject: [proposed patch] GORM and hi-dpi Hi folks, GORM does not draw its palette views correctly when the display scale factor is anything

Re: GNA Shutting Down?

2017-02-03 Thread Graham Lee
As a very infrequent contributor who nonetheless has opinions... I would prefer to use a Free service than the proprietary github (which yes is based on git, and yes git is free software, but still). Is there hosting available from the FSF for a git repo, or funding to e.g. host a gitlab or kall

Re: Patch: PC application project shouldn't include Renaissance files

2017-01-14 Thread Graham Lee
Hi Riccardo, thanks for that, I've tried your latest version and this approach works well for me. Graham. On 13/01/17 14:59, Riccardo Mottola wrote: Hi, Riccardo Mottola wrote: I will look into a solution where just the template is "gorm", but leaves you the freedom to add and work on la

Patch: PC application project shouldn't include Renaissance files

2017-01-08 Thread Graham Lee
Hi Riccardo and other folks, as discussed over on, well, discuss, here's a patch that removes the Renaissance resources and configuration from ProjectCenter's application project template. If we want to add it back it can be all or nothing, but the existing implementation left renaissance files

Re: Kickstarter was not successful... but it did help things...

2013-09-13 Thread Graham Lee
On 13 Sep 2013, at 08:19, "Gregory Casamento" wrote: > What I was thinking about was a similar tool for analyzing the differences > between GNUstep and different releases of the API. By parsing the headers of > Cocoa and those of GNUstep into a set of data structures that can then be > compar

Re: GNUstep WebServices in iOS app?

2013-06-25 Thread Graham Lee
Hi Stanislav, Niels is correct. The NSMapTable/HashTable _classes_ are present in iOS, but not the OpenStep _function_ interfaces (NSMapInsert, NSMapRemove and so on). Cheers,Graham. Stanislav Yaglo , 6/25/2013 11:26 AM: Hi. NSMapTable and NSMapTable are included in iOS since 6.0. But there is n

Re: Another simple reversing of OS X Foundation and CoreFoundation

2013-06-19 Thread Graham Lee
Those who do not learn from history are doomed to reinvent it. From "Copyleft: Pragmatic Idealism" (http://www.gnu.org/philosophy/pragmatic.html): > Consider GNU Objective C. NeXT initially wanted to make this front end > proprietary; they proposed to release it as .o files, and let users link t

Re: How to correctly determine a small object?

2013-06-09 Thread Graham Lee
08:06, "Graham Lee" wrote: > The search term you're looking for is DriverKit. ___ Gnustep-dev mailing list Gnustep-dev@gnu.org https://lists.gnu.org/mailman/listinfo/gnustep-dev

Re: How to correctly determine a small object?

2013-06-09 Thread Graham Lee
This has been done. The search term you're looking for is DriverKit. Graham. Sent from my David Chisnall .sigfile generator On 8 Jun 2013, at 22:51, "Chan Maxthon" wrote: > I am sort of looking into the concept of running Objective-C in a kernel of > an operating system ___

Re: Question about memory management

2013-06-07 Thread Graham Lee
On 7 Jun 2013, at 09:26, "David Chisnall" wrote: > My preferred pattern is: > > + (void)initialize > { >[[self alloc] init]; > } Should this be wrapped in if(self == [Singleton class])? I've seen that used to guard against this +initialize being called multiple times when a subclass is u

Re: Question about memory management

2013-06-04 Thread Graham Lee
5 Jun 2013, at 06:50, Germán Arias wrote: > Class method +defaultPopUp, line 118. > > Germán. > > On 2013-06-04 23:38:10 -0600 "Graham Lee" wrote: > >> Where are you seeing that? I'm looking at -_popUp here: >> http://svn.gna.org/svn/gnustep/libs

Re: Question about memory management

2013-06-04 Thread Graham Lee
Where are you seeing that? I'm looking at -_popUp here: http://svn.gna.org/svn/gnustep/libs/gui/trunk/Source/NSComboBoxCell.m No -init, -new or -copy that I can see. Graham. On 5 Jun 2013, at 00:30, "Germán Arias" wrote: > On 2013-06-03 23:59:15 -0600 &

Re: Question about memory management

2013-06-04 Thread Graham Lee
NSComboBoxCell doesn't release its popup window, but it doesn't retain it either so there's no unbalanced memory use. Graham. On 4 Jun 2013, at 00:33, "Germán Arias" wrote: > For autocomplete I have a class GSAutocompleteWIndow. The > method -complete: (in NSTextVIew) do something like: > > G