Rename BaseBubbleCell to BaseRoomCell. Rename BaseBubbleCellType to BaseRoomCellProtocol.

This commit is contained in:
SBiOSoftWhare
2022-02-16 10:09:11 +01:00
parent e02f6a3b59
commit f0a09f054a
2 changed files with 11 additions and 11 deletions
@@ -17,13 +17,13 @@
import UIKit
import MatrixSDK
@objc protocol SizableBaseBubbleCellType: BaseBubbleCellType {
@objc protocol SizableBaseBubbleCellType: BaseRoomCellProtocol {
static func sizingViewHeightHashValue(from bubbleCellData: MXKRoomBubbleCellData) -> Int
}
/// `SizableBaseBubbleCell` allows a cell using Auto Layout that inherits from this class to automatically return the height of the cell and cache the result.
@objcMembers
class SizableBaseBubbleCell: BaseBubbleCell, SizableBaseBubbleCellType {
class SizableBaseBubbleCell: BaseRoomCell, SizableBaseBubbleCellType {
// MARK: - Constants