BaseRoomCell: Rename bubbleCellContentView property to roomCellContentView (2).

This commit is contained in:
SBiOSoftWhare
2022-02-16 10:40:56 +01:00
parent 644217bb23
commit 081709e168
48 changed files with 125 additions and 125 deletions
@@ -77,12 +77,12 @@ class PollBaseBubbleCell: PollBubbleCell {
private func setupBubbleBackgroundView() {
let bubbleBackgroundView = RoomMessageBubbleBackgroundView()
self.bubbleCellContentView?.insertSubview(bubbleBackgroundView, at: 0)
self.roomCellContentView?.insertSubview(bubbleBackgroundView, at: 0)
}
// The extension property MXKRoomBubbleTableViewCell.messageBubbleBackgroundView is not working there even by doing recursion
private func getBubbleBackgroundView() -> RoomMessageBubbleBackgroundView? {
guard let contentView = self.bubbleCellContentView else {
guard let contentView = self.roomCellContentView else {
return nil
}