[bug #53061] Alert sheets do not disappear when dismissed

2018-02-05 Thread matt rice
Follow-up Comment #3, bug #53061 (project gnustep): Just for the record, this also sounds very similar to the behavior that used to happen which precipitated the old 2003-11-26 commit below, the comment there, "If the backend reacts slowly", might explain the difference in observed behavior. http

[bug #46939] -Werror set for GSSpeechServer

2016-01-20 Thread matt rice
Follow-up Comment #1, bug #46939 (project gnustep): An alternative proposal, to just remove it for standard builds I'm not sure there is currently a way with gnustep-make, if so i missed it in the documentation. something like: DEBUG_OBJCFLAGS=-Werror so it only occurrs during make debug=yes,

[bug #45081] gui and back do not pick up compiler setting

2015-05-12 Thread matt rice
Follow-up Comment #8, bug #45081 (project gnustep): In the cases I found this annoying it was largely doing compiler work and comparing the output of an unmodified compiler with the output of an in-progress one, if you build things incorrectly of course they won't work regardless of whether gnuste

[bug #45081] gui and back do not pick up compiler setting

2015-05-12 Thread matt rice
Follow-up Comment #6, bug #45081 (project gnustep): > The gnustep-make -> libobjc -> gnustep-make sequence before > configuring base is about making sure base is configured with > the version of libobjc you actually intend to use (because base has > to be aware of what libobjc it's going to be

[bug #45081] gui and back do not pick up compiler setting

2015-05-12 Thread matt rice
Follow-up Comment #4, bug #45081 (project gnustep): I recall finding this behavior of gnustep-make/gnustep-base irritating when compiling the very old outside of gcc libobjc, in that it enforced an installation process of the form gnustep-make -> libobjc -> gnustep-make -> gnustep-base _

[bug #42698] Recommended future steps for gnustep-dl2 debian package maintenance

2014-07-08 Thread matt rice
Follow-up Comment #3, bug #42698 (project gnustep): I recall that being more about limiting the number of debian packages, and trying to find a good split of gui/non-gui, I even made the case that libEOModeler could be shipped with DBModeler here https://lists.gnu.org/archive/html/gnustep-dev/201

[bug #42698] Recommended future steps for gnustep-dl2 debian package maintenance

2014-07-07 Thread matt rice
Follow-up Comment #1, bug #42698 (project gnustep): On DBModeler, do as you see fit, AFAICT EOModelEditor isn't a complete replacement for DBModeler since when changing the libEOModeler framework it will no longer work with GDL2Palette, and isn't compatible with the original EOModeler framework in

Re: Segfault when NSTextView is released

2014-02-15 Thread Matt Rice
On Sat, Feb 15, 2014 at 4:17 PM, Lundberg, Johannes wrote: > I don't know if the problem is because my ivar. This should work regardless > if I store the pointer in an ivar or not. And so far this only occurs on > NSTextView. I suspect that the way NSTextView releases its objects > internally is

[bug #39092] NSLock deadlock even in trivial GSWeb application

2013-05-29 Thread matt rice
Follow-up Comment #4, bug #39092 (project gnustep): this lock was a recursive lock until fairly recently, hopefully sebastian chimes in. https://github.com/gnustep/gnustep-gsweb/commit/3c4e7d11d74ab218118fe0995363c1a93db52b1a#GSWeb/GSWApplication.m __

[bug #38859] GDL2 build failures on Apple platforms

2013-04-30 Thread matt rice
Follow-up Comment #1, bug #38859 (project gnustep): the following entries in Makefile.preamble used to link this with the appropriate linker command line for the platform, figuring out whats gone awry there would be the right place to start ADDITIONAL_NATIVE_LIBS += EOControl ADDITIONAL_NATIVE_L

Re: installing gnustep on Fedora 15 fails at libffi

2011-12-05 Thread Matt Rice
On Mon, Dec 5, 2011 at 6:52 AM, Adam Fedor wrote: > I'm not sure about the RPM, but in the libffi source package, ffi.h is > installed in the wrong location, something like > /usr/lib/libffi-3.0.9/include/ > > You might check for that and just manually copy it to /usr/include if that's > the case.

[bug #32383] NSClassFromString returns nil on MinGw if the string class is in a shared library and hasn't yet been used

2011-02-08 Thread matt rice
Follow-up Comment #6, bug #32383 (project gnustep): -- is this what you are referring to in order to get the class loaded? what I meant was being loaded was the class having the +load method called, this at least has well defined semantics of before main or after a dlopen, see http://www.mikeas

[bug #32383] NSClassFromString returns nil on MinGw if the string class is in a shared library and hasn't yet been used

2011-02-08 Thread matt rice
Follow-up Comment #3, bug #32383 (project gnustep): I'm curious if the executable is containing a mixture of dll's and static libraries (like a static libobjc), and if the objc_load_callback is being called, or the classes +load method (i'd guess not), and if so does using a dll version of whatev

[bug #29845] FTBFS on GNU/Hurd with -Wl,--no-undefined

2010-06-09 Thread matt rice
Follow-up Comment #6, bug #29845 (project gnustep): seems like you could declare gnustep_base_user_main with __attribute__((weak)) which should allow it to continue building with -Wl,-z,defs ___ Reply to this item at:

[bug #29892] Outline view selected item highlighting not preserved when collapsing/expanding

2010-05-25 Thread matt rice
Follow-up Comment #5, bug #29892 (project gnustep): except NSTableView and NSOutlineView don't track selected objects, if it did, I would expect there to be a -selectObject: method, and a -selectedObject: method at least the truth is that it tracks row indexes, and its much easier to add this be

[bug #29892] Outline view selected item highlighting not preserved when collapsing/expanding

2010-05-24 Thread matt rice
Follow-up Comment #3, bug #29892 (project gnustep): Dug through the lists a little, from this thread: http://lists.gnu.org/archive/html/gnustep-dev/2007-02/msg3.html so it appears that this removal was intentional, and I disagreed that this bug is a bug, "This stuff doesn't seem to make se

[bug #29892] Outline view selected item highlighting not preserved when collapsing/expanding

2010-05-24 Thread matt rice
Follow-up Comment #2, bug #29892 (project gnustep): iirc the intent was removing duplicate code and letting it fall back to the super's implementation, when I was doing the whole rewrite of the NSTableView selection tracking, so I didn't have to make bugfixes in subclasses, Its very well possible

[bug #29736] missing base methods

2010-05-03 Thread matt rice
Update of bug #29736 (project gnustep): Open/Closed: In Test => Closed ___ Follow-up Comment #5: works great, thanks. ___ Reply to thi

[bug #29735] NSSavePanel does not support -directoryURL

2010-05-02 Thread matt rice
Follow-up Comment #2, bug #29735 (project gnustep): >This is a 10.6 method, using it will make your application Snow >Leopard only. Is this what you intend to have? the exception of the method invocation gets caught by some exception handler somewhere, so its a feature that doesn't work on plat

[bug #29736] missing base methods

2010-05-02 Thread matt rice
Follow-up Comment #2, bug #29736 (project gnustep): ahh, you probably couldn't find it because I gave you the wrong class name, sorry. -[NSMutableString writeToFile:atomically:encoding:error:] ___ Reply to this item at:

[bug #29736] missing base methods

2010-05-01 Thread matt rice
URL: Summary: missing base methods Project: GNUstep Submitted by: ratmice Submitted on: Sun 02 May 2010 12:10:24 AM GMT Category: Base/Foundation Severity: 3 - Normal

[bug #29735] NSSavePanel does not support -directoryURL

2010-05-01 Thread matt rice
URL: Summary: NSSavePanel does not support -directoryURL Project: GNUstep Submitted by: ratmice Submitted on: Sun 02 May 2010 12:06:48 AM GMT Category: Gui/AppKit Seve

[bug #29719] cannot save some .gorm as nib

2010-04-29 Thread matt rice
URL: Summary: cannot save some .gorm as nib Project: GNUstep Submitted by: ratmice Submitted on: Thu 29 Apr 2010 10:17:58 PM GMT Category: Gorm Severity: 3 - Normal

[bug #26438] First application does not get a proper app icon under Window Maker

2010-04-19 Thread matt rice
Follow-up Comment #2, bug #26438 (project gnustep): been a while since i've looked at this, so this may be hogwash. IIRC the way appicons work in windowmaker is somewhat odd. in the ICCCM if you look at... 4.1.2.4. WM_HINTS Property where it talks about the initial_state hint it only describes

[bug #28956] DBModeler compilation fails due to incomplete headers including

2010-03-07 Thread matt rice
Update of bug #28956 (project gnustep): Open/Closed:Open => Closed ___ Follow-up Comment #1: thanks sergey, applied (I still didn't get any error from the missing include here, but it was

[bug #29085] gopen foo.app doesn't open the app

2010-03-05 Thread matt rice
Follow-up Comment #1, bug #29085 (project gnustep): doh accidentally posted early, anyhow under gopen.m revision 25758 gopen foo.app will launch the application while the next revision 28104 the same arguments fails to launch the application, and causes an NSException when gopen attempts to run

[bug #29085] gopen foo.app doesn't open the app

2010-03-05 Thread matt rice
URL: Summary: gopen foo.app doesn't open the app Project: GNUstep Submitted by: ratmice Submitted on: Sat 06 Mar 2010 05:27:57 AM GMT Category: Gui/AppKit Severity: 3

[bug #28939] -[NSString getCString:] doesn't work

2010-02-20 Thread matt rice
Follow-up Comment #2, bug #28939 (project gnustep): I don't have a machine with gnustep to test, but in addition to what Richard mentioned it'd be good to know what [NSString defaultCStringEncoding] is. looking at the getCString: what Richard said was true for NSString.m but the GSString.m versi

[bug #27612] header problem with appkit on gcc 2.95

2009-10-05 Thread matt rice
Follow-up Comment #1, bug #27612 (project gnustep): nothing gnustep can really do about this, it looks like your compiler is confusing -[NSColor set] and +[NSSet set], you can try and avoid including both NSColor.h and NSSet.h, avoid +set, or switch to an unaffected compiler :/, i'm not aware o

[bug #25033] compilation of gnustep-gui-0.14.0 fails on openbsd 4.4 sparc

2009-09-18 Thread matt rice
Follow-up Comment #18, bug #25033 (project gnustep): in the old days this appears to have been dependent on the link order of the libobjc and gnustep-base which differs between shared libraries and static libraries, seems it was discussed here http://gcc.gnu.org/ml/gcc/2000-05/msg00373.html

[bug #26414] GNUstep can't deal with a missing services menu

2009-05-01 Thread matt rice
Follow-up Comment #2, bug #26414 (project gnustep): Fred, the log was removed about 2 months ago. http://svn.gna.org/viewcvs/gnustep?rev=27914&view=rev ___ Reply to this item at: _

[bug #26046] Infinite loop on quit...

2009-03-30 Thread matt rice
Follow-up Comment #6, bug #26046 (project gnustep): Xavier Wrote: > >Nothing to do with my changes. This code is not executed at all: >the loop is only entered when the window of the event is not a >NSWindow, and AFAIK this only happend with a NSOpenGLView. In >short cWin is never null. i'm gue

[bug #24526] Crash on x86_64 when a program is started with argument that is invalid property list

2009-03-20 Thread matt rice
Follow-up Comment #12, bug #24526 (project gnustep): i was getting this also... probably the _builtin_frame_address stuff don't work because something compiled with optimizations and without -fno-omit-frame-pointer i personally don't like this backtrace code, people should just use the

[bug #25548] NSOpenGLContext can't -makeCurrentContext independently of NSOpenGLView.

2009-03-06 Thread matt rice
Follow-up Comment #6, bug #25548 (project gnustep): yes, I know (and I assume you meant NSOpenGLContext -initWithFormat:sharedContext:) that was a big reason why the patch was a hack, it was just easier for the moment the idea was to do this in -makeCurrentContext which will give the caller tim

[bug #25548] NSOpenGLContext can't -makeCurrentContext independently of NSOpenGLView.

2009-03-06 Thread matt rice
Follow-up Comment #4, bug #25548 (project gnustep): here's a hack of a patch which implements this, works with my test & MyGL and my program, it'll need lots cleaning up Yeah, i know we need a drawable, but the drawable and the NSView are relatively unrelated except they must share a display. t

[bug #25548] NSOpenGLContext can't -makeCurrentContext independently of NSOpenGLView.

2009-03-05 Thread matt rice
Follow-up Comment #2, bug #25548 (project gnustep): attached is a test program that shows what i'd like to do... the problem being i'm drawing into NSOpenGLView using external renderer which in turn uses glxGetCurrentDrawable/glxGetCurrentContext initialization of the external renderer takes

[bug #25657] DBModeler Inspector behaviour

2009-03-03 Thread matt rice
Update of bug #25657 (project gnustep): Status: Ready For Test => Fixed Open/Closed: In Test => Closed ___ Follow-up Comment #8: closing, i've comm

[bug #25643] WindowMaker no longer picking up icon...

2009-03-01 Thread matt rice
Follow-up Comment #7, bug #25643 (project gnustep): hmm, i can't really test, as I don't have a windowmaker handy, but i still don't like how [[NSApp setApplicationIconImage:fooImage] iconImage]; can return a scaled fooImage attached is what i had in mind... (file #17558) __

[bug #25740] switching to the next responder sometimes gets real slow

2009-03-01 Thread matt rice
URL: Summary: switching to the next responder sometimes gets real slow Project: GNUstep Submitted by: ratmice Submitted on: Sun 01 Mar 2009 09:51:32 PM GMT Category: Gui/AppKit

[bug #25657] DBModeler Inspector behaviour

2009-02-27 Thread matt rice
Follow-up Comment #6, bug #25657 (project gnustep): Ok, I've commited something which should fix the bug that appeared after fixing the one originally reported here, there are some issues with the selection after property deletion (same effect as the original report). but adding items, and selec

[bug #25657] DBModeler Inspector behaviour

2009-02-27 Thread matt rice
Follow-up Comment #5, bug #25657 (project gnustep): that i cannot reproduce, or see any reason for this issue with the diagram view, any chance you could isolate which change it was to the diagram view? http://svn.gna.org/viewcvs/gnustep/libs/gdl2/trunk/DBModeler/DiagramView.m?rev=27994&sortby=d

[bug #25657] DBModeler Inspector behaviour

2009-02-26 Thread matt rice
Follow-up Comment #2, bug #25657 (project gnustep): doh the fix cause in turn caused another minor annoyance... when adding an attribute/relationship the attribute/relationship editor is no longer selected. ___ Reply to this item at: <

[bug #25657] DBModeler Inspector behaviour

2009-02-26 Thread matt rice
Update of bug #25657 (project gnustep): Status:None => Ready For Test Open/Closed:Open => In Test ___ Follow-up Comment #1: I've commited a fi

[bug #25625] NSPopUpButton menus pop up and track very badly

2009-02-25 Thread matt rice
Follow-up Comment #4, bug #25625 (project gnustep): yes it does actually it worked with either pop-ups or pull-downs the thing just needs to pop-up/pull down partially off screen yet have the whole menu fit on screen at one time and i see the bug. evilPopUp uses a .gorm for the pop-up but manual

[bug #25625] NSPopUpButton menus pop up and track very badly

2009-02-24 Thread matt rice
Follow-up Comment #2, bug #25625 (project gnustep): try EvilPopUp set the pop-up button in the gorm to a pull-down button set N_POPUPITEMS to something like 25, move it so that the thing is near the bottom of your screen, and click the pull down I was able to reproduce it that way. EvilPopUp.t

[bug #25643] WindowMaker no longer picking up icon...

2009-02-21 Thread matt rice
Follow-up Comment #5, bug #25643 (project gnustep): yuo don't understand the scaling in scaledIconSizeForSize(imageSize)? basically it tries to keep the same aspect ratio assuming the icon is made for a 64x64 icon window and the icon is some random size like 48x56 so say windowmaker returns a

[bug #25659] key equivalents depend on order modifiers were pressed

2009-02-21 Thread matt rice
URL: Summary: key equivalents depend on order modifiers were pressed Project: GNUstep Submitted by: ratmice Submitted on: Sat 21 Feb 2009 07:14:03 PM GMT Category: Gui/AppKit

[bug #25658] dragging a table in diagram view problem

2009-02-21 Thread matt rice
Update of bug #25658 (project gnustep): Status:None => Confirmed ___ Follow-up Comment #2: hmm, I can confirm this but not able to reliably reproduce it every time it appears intermitten

[bug #25655] DBModeler crashes when closing window

2009-02-21 Thread matt rice
Update of bug #25655 (project gnustep): Status:None => Fixed Open/Closed: In Test => Closed ___ Follow-up Comment #4: In your report you

[bug #25607] NSUndoManager sends NSUndoManagerCheckpointNotification when opening a top-level undo group

2009-02-21 Thread matt rice
Follow-up Comment #4, bug #25607 (project gnustep): hmmm, for the record i was looking here http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/UndoArchitecture/Tasks/UsingUndoNotif.html#//apple_ref/doc/uid/2210 where it says "whenever an NSUndoManager opens or closes a new undo grou

[bug #25655] DBModeler crashes when closing window

2009-02-21 Thread matt rice
Update of bug #25655 (project gnustep): Open/Closed:Open => In Test ___ Follow-up Comment #2: I've fixed the leakage in the DiagramView also.

[bug #25655] DBModeler crashes when closing window

2009-02-21 Thread matt rice
Follow-up Comment #1, bug #25655 (project gnustep): Thanks for the report, I have commited a fix to svn which should fix this, about the DiagramView stuff, there is still something to fix there it appears that it is causing leakage of EOModel objects. David Ayers said he would release a 0.12.1 u

[bug #25643] WindowMaker no longer picking up icon...

2009-02-20 Thread matt rice
Follow-up Comment #3, bug #25643 (project gnustep): Riccardo, it is possible that some apps icons were cached by windowmaker before the bug appeared, I believe in ~/GNUstep/Library/WindowMaker/CachedPixmaps before this bug appeared which could be why some apps get this behaviour and others do not

[bug #25643] WindowMaker no longer picking up icon...

2009-02-19 Thread matt rice
Follow-up Comment #1, bug #25643 (project gnustep): still running a fairly old gui, but I'm guessing it was r27778 http://svn.gna.org/viewcvs/gnustep/libs/gui/trunk/Source/NSApplication.m?r2=27778&rev=27778&r1=27775&dir_pagestart=50 where this moves the call: [self setApplicationIconImage: ima

[bug #25587] tables not always disappear from outline view when deleted

2009-02-17 Thread matt rice
Follow-up Comment #2, bug #25587 (project gnustep): i've commited a workaround to gdl2 for this which should fix this bug, i'm not convinced of either the workarounds correctness or incorrectness, so if anyone has an opinion either way it would be most appreciated, the bug in base which this ste

[bug #25607] NSUndoManager sends NSUndoManagerCheckpointNotification when opening a top-level undo group

2009-02-17 Thread matt rice
Update of bug #25607 (project gnustep): Open/Closed: In Test => Closed ___ Follow-up Comment #2: yep, thanks ___ Reply to this item at

[bug #25607] NSUndoManager sends NSUndoManagerCheckpointNotification when opening a top-level undo group

2009-02-17 Thread matt rice
URL: Summary: NSUndoManager sends NSUndoManagerCheckpointNotification when opening a top-level undo group Project: GNUstep Submitted by: ratmice Submitted on: Tue 17 Feb 2009 12:20:20 PM GMT

[bug #25587] tables not always disappear from outline view when deleted

2009-02-17 Thread matt rice
Update of bug #25587 (project gnustep): Status:None => Confirmed ___ Follow-up Comment #1: thanks for the report i can reproduce this and will look into it.

[bug #25553] gui bug when build with mingw32, with garbage collection

2009-02-10 Thread matt rice
Follow-up Comment #1, bug #25553 (project gnustep): I don't understand, DESTROY is already defined differently based on if GS_WITH_GC is defined or not, wasn't the point of all these macros so that they could be enabled and disabled based on if GC was there or not. DESTROY is defined as (objec

Re: Quartz Display Services and then NSOpenGLPixelFormat

2009-02-10 Thread Matt Rice
On Mon, Feb 9, 2009 at 3:42 PM, Julien Isorce wrote: > Hi, > > Any "Quartz Display Services" support in GNUstep ? > (ApplicationServices/ApplicationServices.h, > http://developer.apple.com/documentation/graphicsimaging/reference/Quartz_Services_Ref/Reference/reference.html) > > Then when the follo

[bug #25548] NSOpenGLContext can't -makeCurrentContext independently of NSOpenGLView.

2009-02-10 Thread matt rice
URL: Summary: NSOpenGLContext can't -makeCurrentContext independently of NSOpenGLView. Project: GNUstep Submitted by: ratmice Submitted on: Tue 10 Feb 2009 05:10:24 PM GMT Category: B

objc++/#include Foundation.h

2009-02-09 Thread Matt Rice
using class as a variable name doesn't fly in headers when using objc++. (sorry, at the moment all i've got is an anonymous checkout). foo.diff Description: Binary data ___ Bug-gnustep mailing list Bug-gnustep@gnu.org http://lists.gnu.org/mailman/listin

patch for NSOpenGLView

2009-02-08 Thread Matt Rice
using the CopyFromParent can lead to BadMatch if the parent window's depth isn't supported by the visual provided. foo.diff Description: Binary data ___ Bug-gnustep mailing list Bug-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/bug-gnustep

Re: [bug #25462] Issues building GDL2 on Windows

2009-02-03 Thread Matt Rice
On Tue, Feb 3, 2009 at 2:38 AM, Giuseppe Luigi Punzi wrote: > Aplicación emergente: : DBModeler.exe - Error de aplicación : Se produjo la > excepción unknown software exception (0x4015) en la ubicación > 0x6bfe6113. > > I don't know spanish really, but that seems to be the event log entry fr

Re: [bug #25462] Issues building GDL2 on Windows

2009-02-03 Thread Matt Rice
info is usefull? > > Giuseppe Luigi Punzi escribió: >> >> dunno >> >> I'm tottaly new to this things. can I help doing something? >> >> Matt Rice escribió: >>> >>> hrm, thats pretty strange, >>> maybe something is redirecting NSLog to

Re: [bug #25462] Issues building GDL2 on Windows

2009-02-03 Thread Matt Rice
On Tue, Feb 3, 2009 at 12:23 AM, Giuseppe Luigi Punzi wrote: > Well, this is one of the problems and this is the main reason for the video > :P > > The box don't show any error, and if I click on the arrows, the scrollbar, > or any button, the window close and show the exception at the video. I ca

[bug #25472] NSDocumentController doesn't bring an already-open document to the front

2009-02-02 Thread matt rice
Follow-up Comment #2, bug #25472 (project gnustep): this could also be a window manager problem, so information on which window manager you're running might be helpful in diagnosing that. ___ Reply to this item at:

Re: [bug #25462] Issues building GDL2 on Windows

2009-02-02 Thread Matt Rice
On Mon, Feb 2, 2009 at 6:06 AM, Giuseppe Luigi Punzi wrote: > Hi again, > > I think 2 videos instead 2 words is better :) > > Trying to "talk" with sqlite: > http://www.lordzealon.com/gnustep/problems/testingdbmodeller2.htm > well hmm, this didn't really help, theres supposed to be a string there

Re: [bug #25462] Issues building GDL2 on Windows

2009-02-02 Thread Matt Rice
On Mon, Feb 2, 2009 at 4:10 AM, Giuseppe Luigi Punzi wrote: > I can't believe it. I builded GDL2 on windows after 2 weeks :D > > Thanks a lot for the effort. > > Now, If I go to New from Database, and select SQLite, DBModeller crash at > Ok. If I press on New model, and then, add an entity and an

[bug #25462] Issues building GDL2 on Windows

2009-02-02 Thread matt rice
Follow-up Comment #5, bug #25462 (project gnustep): i found a reference to this somewhere else, and have commited a fix to DBModeler. ___ Reply to this item at:

[bug #25462] Issues building GDL2 on Windows

2009-02-02 Thread matt rice
Follow-up Comment #4, bug #25462 (project gnustep): GDL2Palette containing nothing is normal at the moment, stuff maybe added in the future, but currently it only creates objects through drag and drop from DBModeler i'm not sure about the loadGSMarkupNamed:owner: error, this should be provided b

[bug #25462] Issues building GDL2 on Windows

2009-02-02 Thread matt rice
Follow-up Comment #2, bug #25462 (project gnustep): i just commited something (before i saw nicola's response) to link in libGorm (that looked like it would do it here) Nicola if you check this out please also look at GDL2Palette/GNUmakefile:54 PALETTE_LIBS=$(ADDITIONAL_OBJC_LIBS) -lGorm and se

[bug #25439] ADDITIONAL_NATIVE_LIB_DIRS/ADDITIONAL_NATIVE_LIBS doesn't appear to work under windows

2009-01-31 Thread matt rice
Follow-up Comment #3, bug #25439 (project gnustep): Thanks, I looked at why linux never had this issue and during the compile it ignores ADDITIONAL_NATIVE_LIBS entirely when linking a framework (seems to require LIBRARY_DEPENDS_UPON which won't work with nativelibraries) so since the -lEOControl

[bug #25427] Undefined References building GDL2 on Mingw

2009-01-30 Thread matt rice
Update of bug #25427 (project gnustep): Status: Ready For Test => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #5: i'm going to close

[bug #25439] ADDITIONAL_NATIVE_LIB_DIRS/ADDITIONAL_NATIVE_LIBS doesn't appear to work under windows

2009-01-30 Thread matt rice
URL: Summary: ADDITIONAL_NATIVE_LIB_DIRS/ADDITIONAL_NATIVE_LIBS doesn't appear to work under windows Project: GNUstep Submitted by: ratmice Submitted on: Fri 30 Jan 2009 09:36:25 AM GMT

[bug #25427] Undefined References building GDL2 on Mingw

2009-01-29 Thread matt rice
Update of bug #25427 (project gnustep): Status:None => Ready For Test ___ Follow-up Comment #3: I added the missing include and I think I figured out what was causing the link failure, please

[bug #25411] dragging destination receiving mask of NSDragOperationNone

2009-01-27 Thread matt rice
Follow-up Comment #2, bug #25411 (project gnustep): yeah i'm aware of that, and set it up in my program to override the default draggingOperationMask (I just implemented the draggingSourceOperationMask:forLocal: function instead so it would work with older gui's)... before OS X added -setDraggin

[bug #25415] Gorm GDL2 objects vanish or cause errors when loading nib when linked to ui components

2009-01-27 Thread matt rice
Follow-up Comment #3, bug #25415 (project gnustep): yeah Auxiliary/gdl2.make no longer provides the link flags, we just leave it up to the makefile to provide, i don't recall the exact reasons for removing them but I can make some up :) other information is contained in gdl2.make and one might w

[bug #25415] Gorm GDL2 objects vanish or cause errors when loading nib when linked to ui components

2009-01-26 Thread matt rice
Follow-up Comment #1, bug #25415 (project gnustep): I am unable to reproduce the disappearing objects in gorm, whenever I drop things from DBModeler to Gorm, and save, and reload them the objects stay, if they are linked to anything or not. as far as the 'Exception occured while loading model: d

[bug #25407] Dragging an entity from DBModeler to Gorm object view does not work

2009-01-26 Thread matt rice
Update of bug #25407 (project gnustep): Status: Ready For Test => Fixed ___ Reply to this item at: ___ Me

[bug #25407] Dragging an entity from DBModeler to Gorm object view does not work

2009-01-26 Thread matt rice
Update of bug #25407 (project gnustep): Status: Confirmed => Ready For Test ___ Follow-up Comment #5: added something to DBModeler to fix this, it appears the default behaviour of NSTableView (as a

[bug #25411] dragging destination receiving mask of NSDragOperationNone

2009-01-26 Thread matt rice
URL: Summary: dragging destination receiving mask of NSDragOperationNone Project: GNUstep Submitted by: ratmice Submitted on: Mon 26 Jan 2009 06:07:54 AM GMT Category: Gui/AppKit

[bug #25407] Dragging an entity from DBModeler to Gorm object view does not work

2009-01-25 Thread matt rice
Follow-up Comment #2, bug #25407 (project gnustep): note that iirc the same mechanism used in GDL2Palette should also be used to drag and drop images and sounds into gorm, so GWorkspace/gorm could also be used to test the gorm side of things.

[bug #25395] event key codes incompatible to apple

2009-01-24 Thread matt rice
Follow-up Comment #2, bug #25395 (project gnustep): at one point in time i remember the exact opposite was true, the internet agrees. http://objc.toodarkpark.net/AppKit/Classes/NSEvent.html#//apple_ref/occ/instm/NSEvent/keyCode Returns the code for the keyboard key associated with the receiving

[bug #25357] document instllation domain configure option

2009-01-19 Thread matt rice
Follow-up Comment #3, bug #25357 (project gnustep): there is ./configure --help=recursive but its not entirely obvious that there is hidden flags ___ Reply to this item at:

[bug #25247] gnustep-base takes ages to compile on i386 buildds

2009-01-04 Thread matt rice
Follow-up Comment #4, bug #25247 (project gnustep): its because they're building the documentation before installation with this line LD_LIBRARY_PATH=/build/buildd/gnustep-base-1.16.1/Source/obj:$LD_LIBRARY_PATH gs_make -C Documentation messages=yes so i suppose this could be deemed

[bug #25247] gnustep-base takes ages to compile on i386 buildds

2009-01-04 Thread matt rice
Follow-up Comment #2, bug #25247 (project gnustep): um, if you look at the build logs from the link e.g. http://launchpadlibrarian.net/15846995/buildlog_ubuntu-intrepid-i386.gnustep-base_1.16.1-2ubuntu1_FULLYBUILT.txt.gz 2008-07-05 09:38:22.569 autogsdoc[7689] Defaults path '/root/GNUstep/Defau

Re: Fix, GDL2, EORelationship (-validateName:)

2008-05-01 Thread Matt Rice
On Wed, Apr 30, 2008 at 11:05 PM, Georg Fleischmann <[EMAIL PROTECTED]> wrote: > Hello Matt, > > > On 30.04.2008, at 22:27, Matt Rice wrote: > > > > though, we can get a list of names for dupe checking without > > triggering the loading code, > >

Re: Fix, GDL2, EORelationship (-validateName:)

2008-04-30 Thread Matt Rice
On Mon, Apr 28, 2008 at 11:56 PM, David Ayers <[EMAIL PROTECTED]> wrote: > Hello Georg, > > Thanks for the report! > > Georg Fleischmann schrieb: > > > here is a patch for EORelationship, proposing a fix for awakening of > > attributes that have a definition. > > > > When relationships are co

[bug #19116] Selecting certain classes of objects causes changes to document

2007-02-21 Thread matt rice
URL: Summary: Selecting certain classes of objects causes changes to document Project: GNUstep Submitted by: ratmice Submitted on: Wednesday 02/21/2007 at 12:13 Category: Gorm

[bug #19115] loading a palette doesn't register views for -resourcePasteboardTypes on existing documents

2007-02-21 Thread matt rice
Update of bug #19115 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Reply to this item at:

[bug #19115] loading a palette doesn't register views for -resourcePasteboardTypes on existing documents

2007-02-21 Thread matt rice
URL: Summary: loading a palette doesn't register views for -resourcePasteboardTypes on existing documents Project: GNUstep Submitted by: ratmice Submitted on: Wednesday 02/21/2007 at 10:53

[bug #18881] NSBrowser multiple selection jumps around

2007-02-06 Thread matt rice
Update of bug #18881 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #2: commited this..

[bug #18946] NSPopupButtonCell in a NSTableView does not send tableView:setObjectValue:forTableColumn:row:

2007-02-04 Thread matt rice
Update of bug #18946 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #6: Closing this as fi

[bug #18731] Gorm leaves window open after document close

2007-02-04 Thread matt rice
Update of bug #18731 (project gnustep): Status:None => Fixed Open/Closed:Open => Closed ___ Reply to this item at:

[bug #18946] NSPopupButtonCell in a NSTableView does not send tableView:setObjectValue:forTableColumn:row:

2007-02-04 Thread matt rice
Follow-up Comment #4, bug #18946 (project gnustep): using svn or still using the release? NSTableView was kindof confused in the past releases opting for the 'editable' definition of 'changes object values' where 'editable' should have meant 'can be edited by doing keyboard input'. NSTableView

[bug #18946] NSPopupButtonCell in a NSTableView does not send tableView:setObjectValue:forTableColumn:row:

2007-02-04 Thread matt rice
Follow-up Comment #2, bug #18946 (project gnustep): commited something to partially fix this in svn. there are some related but much more intrusive changes that need to be made to NSTableView -mouseDown: I haven't yet done. you will notice that this doesn't currently select a row when doing pop

[bug #18944] Drag&drop from an NSOutlineView is hard for the user.

2007-02-03 Thread matt rice
Update of bug #18944 (project gnustep): Status:None => Duplicate Open/Closed:Open => Closed ___ Follow-up Comment #1: This seems like a

[bug #18914] Unable to install Terminal.app

2007-01-30 Thread matt rice
Update of bug #18914 (project gnustep): Status:None => Invalid Open/Closed:Open => Declined ___ Follow-up Comment #1: Terminal is not a

[bug #18881] NSBrowser multiple selection jumps around

2007-01-25 Thread matt rice
Follow-up Comment #1, bug #18881 (project gnustep): wasn't able to find where this was introduced but attached is something which seems to fix it... I don't quite get why NSBrowser's doClick: (the matrixes action) is trying to select the selected cells though, it seems as though they are alrea

  1   2   3   >