Minor tidyup

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6386 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 2000-03-27 06:56:10 +00:00
parent 76a9c0ddc0
commit c47b08b7be

View file

@ -37,24 +37,24 @@
@interface NSSlider : NSControl @interface NSSlider : NSControl
- (NSImage *)image; - (NSImage*) image;
- (int)isVertical; - (int) isVertical;
- (float)knobThickness; - (float) knobThickness;
- (void)setImage:(NSImage *)backgroundImage; - (void) setImage: (NSImage*)backgroundImage;
- (void)setKnobThickness:(float)aFloat; - (void) setKnobThickness: (float)aFloat;
- (void)setTitle:(NSString *)aString; - (void) setTitle: (NSString*)aString;
- (void)setTitleCell:(NSCell *)aCell; - (void) setTitleCell: (NSCell*)aCell;
- (void)setTitleColor:(NSColor *)aColor; - (void) setTitleColor: (NSColor*)aColor;
- (void)setTitleFont:(NSFont *)fontObject; - (void) setTitleFont: (NSFont*)fontObject;
- (NSString *)title; - (NSString*) title;
- (id)titleCell; - (id) titleCell;
- (NSColor *)titleColor; - (NSColor*) titleColor;
- (NSFont *)titleFont; - (NSFont*) titleFont;
- (double)maxValue; - (double) maxValue;
- (double)minValue; - (double) minValue;
- (void)setMaxValue:(double)aDouble; - (void) setMaxValue: (double)aDouble;
- (void)setMinValue:(double)aDouble; - (void) setMinValue: (double)aDouble;
- (BOOL)acceptsFirstMouse:(NSEvent *)theEvent; - (BOOL) acceptsFirstMouse: (NSEvent*)theEvent;
@end @end