fix some trailing semicolons

This commit is contained in:
Riccardo Mottola 2023-11-17 16:53:43 +01:00
parent fb358c3b03
commit 08411ea68f
5 changed files with 5 additions and 5 deletions

View file

@ -90,7 +90,7 @@
return nil;
}
- (id<NSAccessibilityElement>) targetElement;
- (id<NSAccessibilityElement>) targetElement
{
return nil;
}

View file

@ -1987,7 +1987,7 @@ static NSString *_placeholderItem = nil;
return _allowsEmptySelection;
}
- (void) setAllowsEmptySelection: (BOOL)flag;
- (void) setAllowsEmptySelection: (BOOL)flag
{
_allowsEmptySelection = flag;
}

View file

@ -146,7 +146,7 @@
_maximumNumberOfRows = maxRows;
}
- (NSUInteger) maximumNumberOfRows;
- (NSUInteger) maximumNumberOfRows
{
return _maximumNumberOfRows;
}

View file

@ -176,7 +176,7 @@
return self;
}
- (void) dealloc;
- (void) dealloc
{
RELEASE(_attributes);
[super dealloc];

View file

@ -134,7 +134,7 @@
withTextView: nil];
}
- (void)cancelFindIndicator;
- (void)cancelFindIndicator
{
}