Fix typo in method name
This commit is contained in:
parent
a6dc97b22b
commit
f1099326d9
|
@ -13,7 +13,7 @@ import MastodonAsset
|
||||||
import MastodonLocalization
|
import MastodonLocalization
|
||||||
|
|
||||||
protocol ProfileFieldCollectionViewCellDelegate: AnyObject {
|
protocol ProfileFieldCollectionViewCellDelegate: AnyObject {
|
||||||
func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLebel: MetaLabel, didSelectMeta meta: Meta)
|
func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLabel: MetaLabel, didSelectMeta meta: Meta)
|
||||||
}
|
}
|
||||||
|
|
||||||
final class ProfileFieldCollectionViewCell: UICollectionViewCell {
|
final class ProfileFieldCollectionViewCell: UICollectionViewCell {
|
||||||
|
@ -151,7 +151,7 @@ extension ProfileFieldCollectionViewCell {
|
||||||
extension ProfileFieldCollectionViewCell: MetaLabelDelegate {
|
extension ProfileFieldCollectionViewCell: MetaLabelDelegate {
|
||||||
func metaLabel(_ metaLabel: MetaLabel, didSelectMeta meta: Meta) {
|
func metaLabel(_ metaLabel: MetaLabel, didSelectMeta meta: Meta) {
|
||||||
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
||||||
delegate?.profileFieldCollectionViewCell(self, metaLebel: metaLabel, didSelectMeta: meta)
|
delegate?.profileFieldCollectionViewCell(self, metaLabel: metaLabel, didSelectMeta: meta)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -144,8 +144,8 @@ extension ProfileAboutViewController: UICollectionViewDelegate {
|
||||||
|
|
||||||
// MARK: - ProfileFieldCollectionViewCellDelegate
|
// MARK: - ProfileFieldCollectionViewCellDelegate
|
||||||
extension ProfileAboutViewController: ProfileFieldCollectionViewCellDelegate {
|
extension ProfileAboutViewController: ProfileFieldCollectionViewCellDelegate {
|
||||||
func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLebel: MetaLabel, didSelectMeta meta: Meta) {
|
func profileFieldCollectionViewCell(_ cell: ProfileFieldCollectionViewCell, metaLabel: MetaLabel, didSelectMeta meta: Meta) {
|
||||||
delegate?.profileAboutViewController(self, profileFieldCollectionViewCell: cell, metaLabel: metaLebel, didSelectMeta: meta)
|
delegate?.profileAboutViewController(self, profileFieldCollectionViewCell: cell, metaLabel: metaLabel, didSelectMeta: meta)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue