mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
fix some trailing semicolons
This commit is contained in:
parent
fb358c3b03
commit
08411ea68f
5 changed files with 5 additions and 5 deletions
|
@ -90,7 +90,7 @@
|
|||
return nil;
|
||||
}
|
||||
|
||||
- (id<NSAccessibilityElement>) targetElement;
|
||||
- (id<NSAccessibilityElement>) targetElement
|
||||
{
|
||||
return nil;
|
||||
}
|
||||
|
|
|
@ -1987,7 +1987,7 @@ static NSString *_placeholderItem = nil;
|
|||
return _allowsEmptySelection;
|
||||
}
|
||||
|
||||
- (void) setAllowsEmptySelection: (BOOL)flag;
|
||||
- (void) setAllowsEmptySelection: (BOOL)flag
|
||||
{
|
||||
_allowsEmptySelection = flag;
|
||||
}
|
||||
|
|
|
@ -146,7 +146,7 @@
|
|||
_maximumNumberOfRows = maxRows;
|
||||
}
|
||||
|
||||
- (NSUInteger) maximumNumberOfRows;
|
||||
- (NSUInteger) maximumNumberOfRows
|
||||
{
|
||||
return _maximumNumberOfRows;
|
||||
}
|
||||
|
|
|
@ -176,7 +176,7 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void) dealloc;
|
||||
- (void) dealloc
|
||||
{
|
||||
RELEASE(_attributes);
|
||||
[super dealloc];
|
||||
|
|
|
@ -134,7 +134,7 @@
|
|||
withTextView: nil];
|
||||
}
|
||||
|
||||
- (void)cancelFindIndicator;
|
||||
- (void)cancelFindIndicator
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue