* gaflight_location_equal: * @location: A #GAFlightLocation. * @other_location: A #GAFlightLocation to be compared. * * Returns: %TRUE if both of them represents the same URI, %FALSE otherwise. * * Since: 5.0.0 */
| 309 | * Since: 5.0.0 |
| 310 | */ |
| 311 | gboolean |
| 312 | gaflight_location_equal(GAFlightLocation *location, GAFlightLocation *other_location) |
| 313 | { |
| 314 | const auto flight_location = gaflight_location_get_raw(location); |
| 315 | const auto flight_other_location = gaflight_location_get_raw(other_location); |
| 316 | return flight_location->Equals(*flight_other_location); |
| 317 | } |
| 318 | |
| 319 | typedef struct GAFlightDescriptorPrivate_ |
| 320 | { |
nothing calls this directly
no test coverage detected