Skip to content

Commit

Permalink
Constify the event
Browse files Browse the repository at this point in the history
  • Loading branch information
KitsuneRal authored Oct 23, 2024
1 parent efd53bd commit 5b1e552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quotient/room.h
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ public Q_SLOTS:
/// The event is about to be appended to the list of pending events
void pendingEventAboutToAdd(Quotient::RoomEvent* event);
/// An event has been appended to the list of pending events
void pendingEventAdded(Quotient::RoomEvent* event);
void pendingEventAdded(const Quotient::RoomEvent* event);
/// The remote echo has arrived with the sync and will be merged
/// with its local counterpart
/** NB: Requires a sync loop to be emitted */
Expand Down

0 comments on commit 5b1e552

Please sign in to comment.