From 127a5fa5fcfffaf4e04caeebfaab54d4a75f897c Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 30 Jan 2003 04:37:07 +0000 Subject: [PATCH] Fixed compiler warnings git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@15778 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/ChangeLog b/ChangeLog index be5c5083c..13b1c202a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,36 @@ +Thu Jan 30 05:12:21 2003 Serg Stoyan + + * Headers/gnustep/gui/NSMenuItem.h: NSMenuItem protocol conforms + to NSObject protocol. + * Source/NSBundleAdditions.m ([-instantiateObject:]): Added + missing cast. + * Source/NSImage.m ([-dissolveToPoint:fromRect:fraction:]): Added + missing variable initializer. + ([-_bestRep:withBpsMatch:]): The same. + * Source/NSImageRep.m ([-drawAtPoint:]): Added missing variable + initializer. + * Source/NSSplitView.m ([-mouseDown:]): The same. + * Source/NSStringDrawing.m (drawRun): Fixed compiler warning. + * Source/NSTableHeaderCell.m ([-setHighlighted:flag]): New method. + * Source/NSTableHeaderView.m ([-drawRect:]): Removed calls to + setBackgroundColor:. + ([-mouseDown:]): Use setHighlighted:, not setBackgroundColor:, to + highlight a header cell. + * Source/NSTableView.m ([-mouseDown:]): Added missing variable + initializer. + * Headers/gnustep/gui/NSView.h: Added declaration of + lockFocusInRect: + * Source/NSView.m ([-lockFocusInRect:]): Added missing variable + initializer. + * Source/NSWindow.m: Include NSToolbar.h + +Thu Jan 30 04:55:12 2003 Nicola Pero + + * Headers/gnustep/gui/NSToolbar.h: Declaration of GNUstepPrivate + category moved here from NSToolbar.m. + * Source/NSToolbar.m: Removed GNUstepPrivate category @interface. + * Source/NSWindow.m ([-setToolbar:]): Added missing cast. + Thu Jan 30 04:39:47 2003 Nicola Pero * Source/NSWindowController.m ([-dealloc]): Release the window, do