Rename to partialAttributedTextMessage

This commit is contained in:
aringenbach
2022-05-09 10:46:50 +02:00
parent 90d9af5780
commit 18de7a5933
3 changed files with 7 additions and 7 deletions
@@ -173,7 +173,7 @@ extern NSString *const kMXKRoomDataSourceTimelineErrorErrorKey;
/**
The current attributed text message partially typed in text input (use nil to reset it).
*/
@property (nonatomic) NSAttributedString *attributedPartialTextMessage;
@property (nonatomic) NSAttributedString *partialAttributedTextMessage;
/**
The current thread id for the data source. If provided, data source displays the specified thread, otherwise the whole room messages.
@@ -990,14 +990,14 @@ typedef NS_ENUM (NSUInteger, MXKRoomDataSourceError) {
_room.partialTextMessage = partialTextMessage;
}
- (NSAttributedString *)attributedPartialTextMessage
- (NSAttributedString *)partialAttributedTextMessage
{
return _room.attributedPartialTextMessage;
return _room.partialAttributedTextMessage;
}
- (void)setAttributedPartialTextMessage:(NSAttributedString *)attributedPartialTextMessage
- (void)setPartialAttributedTextMessage:(NSAttributedString *)partialAttributedTextMessage
{
_room.attributedPartialTextMessage = attributedPartialTextMessage;
_room.partialAttributedTextMessage = partialAttributedTextMessage;
}
- (void)refreshEventListeners:(NSArray *)liveEventTypesFilterForMessages