Rename indexforEventId to indexForEventId

This is a simple change to ensure its properly camelCase.
This commit is contained in:
Joshua Goins
2026-01-11 17:20:35 -05:00
parent b45967508c
commit 58b47b8711
6 changed files with 8 additions and 6 deletions

View File

@@ -113,9 +113,10 @@ public:
[[nodiscard]] QHash<int, QByteArray> roleNames() const override;
/**
* @brief Get the QModelIndex of the given event ID in the model.
* @brief Get the QModelIndex of the given event ID in the model, returning an invalid QModelIndex if no matches were found.
*/
Q_INVOKABLE QModelIndex indexforEventId(const QString &eventId) const;
Q_INVOKABLE QModelIndex indexForEventId(const QString &eventId) const;
static void setHiddenFilter(std::function<bool(const Quotient::RoomEvent *)> hiddenFilter);