2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 00:55:12 +00:00

Version 4.9.2: Fix build with GCC.

This commit is contained in:
John Preston
2023-08-21 23:58:10 +02:00
parent 1d26a01144
commit 20ad39bdf9
2 changed files with 0 additions and 29 deletions

View File

@@ -72,7 +72,6 @@ public:
Row(not_null<RowDelegate*> delegate, const EntryData &data);
void update(const EntryData &data);
void updateName(const QString &name);
[[nodiscard]] EntryData data() const;
@@ -525,12 +524,6 @@ void Row::update(const EntryData &data) {
_delegate->rowUpdateRow(this);
}
void Row::updateName(const QString &name) {
_data.name = name;
refreshName(st::sessionListItem);
_delegate->rowUpdateRow(this);
}
EntryData Row::data() const {
return _data;
}