mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 12:30:47 +00:00
* TextConverters/RTF/RTFConsumer.m: Add empty appendImage:
method for RTFConsumer. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@38142 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
274b50bbab
commit
2fcbc10980
2 changed files with 11 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2014-10-31 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
|
* TextConverters/RTF/RTFConsumer.m: Add empty appendImage: method
|
||||||
|
for RTFConsumer.
|
||||||
|
|
||||||
2014-10-31 Fred Kiefer <FredKiefer@gmx.de>
|
2014-10-31 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Source/NSLayoutManager.m
|
* Source/NSLayoutManager.m
|
||||||
|
|
|
@ -286,6 +286,7 @@ static BOOL classInheritsFromNSMutableAttributedString (Class c)
|
||||||
- (void) appendHelpMarker: (NSString*)markerName;
|
- (void) appendHelpMarker: (NSString*)markerName;
|
||||||
- (void) appendField: (int)start
|
- (void) appendField: (int)start
|
||||||
instruction: (NSString*)instruction;
|
instruction: (NSString*)instruction;
|
||||||
|
- (void) appendImage: (NSString*) string;
|
||||||
- (void) reset;
|
- (void) reset;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
@ -409,12 +410,6 @@ static BOOL classInheritsFromNSMutableAttributedString (Class c)
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
||||||
@interface RTFDConsumer (Private)
|
|
||||||
|
|
||||||
- (void) appendImage: (NSString*) string;
|
|
||||||
|
|
||||||
@end
|
|
||||||
|
|
||||||
@implementation RTFDConsumer
|
@implementation RTFDConsumer
|
||||||
|
|
||||||
- (id) init
|
- (id) init
|
||||||
|
@ -812,6 +807,11 @@ static BOOL classInheritsFromNSMutableAttributedString (Class c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void) appendImage: (NSString*)string
|
||||||
|
{
|
||||||
|
// Do nothing for RTF
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
#undef IGNORE
|
#undef IGNORE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue