* gaflight_ticket_equal: * @ticket: A #GAFlightTicket. * @other_ticket: A #GAFlightTicket to be compared. * * Returns: %TRUE if both of them represents the same ticket, %FALSE otherwise. * * Since: 5.0.0 */
| 676 | * Since: 5.0.0 |
| 677 | */ |
| 678 | gboolean |
| 679 | gaflight_ticket_equal(GAFlightTicket *ticket, GAFlightTicket *other_ticket) |
| 680 | { |
| 681 | const auto flight_ticket = gaflight_ticket_get_raw(ticket); |
| 682 | const auto flight_other_ticket = gaflight_ticket_get_raw(other_ticket); |
| 683 | return flight_ticket->Equals(*flight_other_ticket); |
| 684 | } |
| 685 | |
| 686 | typedef struct GAFlightEndpointPrivate_ |
| 687 | { |
nothing calls this directly
no test coverage detected