diff --git a/ChangeLog b/ChangeLog index d963b8b84..6aee2761d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,17 +1,21 @@ -2002-10-25 Adam Fedor +2002-10-26 Adam Fedor + * Source/NSOutlineView.m (-drawRow:clipRect:): Release imageCell + (patch from Stefan ). + +2002-10-25 Adam Fedor * Source/NSApplication.m: Remove some NSDebugLogs. * Source/NSDocument.m - (-fileNameFromRunningSavePanelForSaveOperation:): Set dicectory to + (-fileNameFromRunningSavePanelForSaveOperation:): Set directory to the currentDirectory if no fileName is set. Localize. - (-fileAttributesToWriteToFile:ofType:saveOperation:): Stib implement. + (-fileAttributesToWriteToFile:ofType:saveOperation:): Stub implement. * Source/NSDocumentController.m: Document. (+sharedDocumentController): Proper allocation/init. Set ourselves as the application delegate if there isn't one already. (-init): Retrieve list of recent documents. - (-reviewUnsavedDocumentsWithAlertTitle:cancellable:) Save + (-reviewUnsavedDocumentsWithAlertTitle:cancellable:): Save current directory. Localize. (-currentDirectory): Rewrite according to docs. diff --git a/Source/NSOutlineView.m b/Source/NSOutlineView.m index f6994cd85..3175d8b78 100644 --- a/Source/NSOutlineView.m +++ b/Source/NSOutlineView.m @@ -1003,7 +1003,7 @@ static NSImage *unexpandable = nil; drawingRect.origin.x += indentationFactor + [image size].width + 5; drawingRect.size.width -= indentationFactor + [image size].width + 5; - + RELEASE(imageCell); } [cell drawWithFrame: drawingRect inView: self];