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
@@ -21,6 +21,6 @@ class TextMessageOutgoingWithPaginationTitleBubbleCell: TextMessageOutgoingWitho
override func setupViews() {
super.setupViews()
bubbleCellContentView?.showPaginationTitle = true
roomCellContentView?.showPaginationTitle = true
}
}
@@ -19,6 +19,6 @@ class TextMessageOutgoingWithPaginationTitleWithoutSenderNameBubbleCell: TextMes
override func setupViews() {
super.setupViews()
bubbleCellContentView?.showSenderName = false
roomCellContentView?.showSenderName = false
}
}
@@ -23,7 +23,7 @@ class TextMessageOutgoingWithoutSenderInfoBubbleCell: TextMessageBaseBubbleCell,
override func setupViews() {
super.setupViews()
bubbleCellContentView?.showSenderInfo = false
roomCellContentView?.showSenderInfo = false
self.setupBubbleConstraints()
self.setupBubbleDecorations()
@@ -39,8 +39,8 @@ class TextMessageOutgoingWithoutSenderInfoBubbleCell: TextMessageBaseBubbleCell,
private func setupBubbleConstraints() {
self.bubbleCellContentView?.innerContentViewLeadingConstraint.constant = BubbleRoomCellLayoutConstants.outgoingBubbleBackgroundMargins.left
self.bubbleCellContentView?.innerContentViewTrailingConstraint.constant = BubbleRoomCellLayoutConstants.outgoingBubbleBackgroundMargins.right
self.roomCellContentView?.innerContentViewLeadingConstraint.constant = BubbleRoomCellLayoutConstants.outgoingBubbleBackgroundMargins.left
self.roomCellContentView?.innerContentViewTrailingConstraint.constant = BubbleRoomCellLayoutConstants.outgoingBubbleBackgroundMargins.right
guard let containerView = self.textMessageContentView, let bubbleBackgroundView = containerView.bubbleBackgroundView else {
return