mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Remove compiler warning for NSBrowser header cell drawing.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30360 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
354ab11ccc
commit
0ecdeae752
3 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-05-11 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/Additions/GNUstepGUI/GSTheme.h:
|
||||
* Source/GSThemeDrawing.m: Remove compiler warning for NSBrowser
|
||||
header cell drawing.
|
||||
|
||||
2010-05-10 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Clarify unstable release documentation
|
||||
|
|
|
@ -927,11 +927,11 @@ APPKIT_EXPORT NSString *GSThemeWillDeactivateNotification;
|
|||
state: (int)inputState
|
||||
andTitle: (NSString*)title;
|
||||
|
||||
- (void) drawBrowserHeaderCell: (NSCell*)cell
|
||||
- (void) drawBrowserHeaderCell: (NSTableHeaderCell*)cell
|
||||
withFrame: (NSRect)rect
|
||||
inView: (NSView*)view;
|
||||
|
||||
- (NSRect) browserHeaderDrawingRectForCell: (NSCell*)cell
|
||||
- (NSRect) browserHeaderDrawingRectForCell: (NSTableHeaderCell*)cell
|
||||
withFrame: (NSRect)rect;
|
||||
|
||||
@end
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
#import "AppKit/NSProgressIndicator.h"
|
||||
#import "AppKit/NSScroller.h"
|
||||
#import "AppKit/NSStringDrawing.h"
|
||||
#import "AppKit/NSTableHeaderCell.h"
|
||||
#import "AppKit/NSView.h"
|
||||
#import "AppKit/PSOperators.h"
|
||||
|
||||
|
@ -1436,7 +1437,7 @@ static NSDictionary *titleTextAttributes[3] = {nil, nil, nil};
|
|||
}
|
||||
|
||||
|
||||
- (void) drawBrowserHeaderCell: (NSCell*)cell
|
||||
- (void) drawBrowserHeaderCell: (NSTableHeaderCell*)cell
|
||||
withFrame: (NSRect)rect
|
||||
inView: (NSView*)view;
|
||||
{
|
||||
|
@ -1455,7 +1456,7 @@ static NSDictionary *titleTextAttributes[3] = {nil, nil, nil};
|
|||
}
|
||||
}
|
||||
|
||||
- (NSRect) browserHeaderDrawingRectForCell: (NSCell*)cell
|
||||
- (NSRect) browserHeaderDrawingRectForCell: (NSTableHeaderCell*)cell
|
||||
withFrame: (NSRect)rect
|
||||
{
|
||||
GSDrawTiles *tiles;
|
||||
|
|
Loading…
Reference in a new issue