mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 15:30:38 +00:00
Fix all current compiler warnings on FreeBSD/x86-64.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36038 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
14b195c4a0
commit
30eb57e642
41 changed files with 266 additions and 262 deletions
|
@ -175,18 +175,18 @@ Interface for a bunch of internal methods that need to be cleaned up.
|
|||
NSParagraphStyle *paragraphStyle;
|
||||
unsigned int flags;
|
||||
NSColor *insertionColor;
|
||||
NSArray *linkAttr;
|
||||
NSArray *markAttr;
|
||||
NSArray *selectedAttr;
|
||||
NSDictionary *linkAttr;
|
||||
NSDictionary *markAttr;
|
||||
NSDictionary *selectedAttr;
|
||||
NSTextView *textView;
|
||||
}
|
||||
- (NSColor *) backgroundColor;
|
||||
- (NSParagraphStyle *) paragraphStyle;
|
||||
- (unsigned int) flags;
|
||||
- (NSColor *) insertionColor;
|
||||
- (NSArray *) linkAttributes;
|
||||
- (NSArray *) markAttributes;
|
||||
- (NSArray *) selectedAttributes;
|
||||
- (NSDictionary *) linkAttributes;
|
||||
- (NSDictionary *) markAttributes;
|
||||
- (NSDictionary *) selectedAttributes;
|
||||
- (NSTextView *) textView;
|
||||
@end
|
||||
|
||||
|
@ -289,17 +289,17 @@ Interface for a bunch of internal methods that need to be cleaned up.
|
|||
return insertionColor;
|
||||
}
|
||||
|
||||
- (NSArray *) linkAttributes
|
||||
- (NSDictionary *) linkAttributes
|
||||
{
|
||||
return linkAttr;
|
||||
}
|
||||
|
||||
- (NSArray *) markAttributes
|
||||
- (NSDictionary *) markAttributes
|
||||
{
|
||||
return markAttr;
|
||||
}
|
||||
|
||||
- (NSArray *) selectedAttributes
|
||||
- (NSDictionary *) selectedAttributes
|
||||
{
|
||||
return selectedAttr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue