mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
ges: Use %NULL instead of #NULL
Reported by Stefan Kost: "% is for constants, # is for objects/structs/types, @ is for parameters."
This commit is contained in:
parent
50911c87a6
commit
904aabe653
2 changed files with 3 additions and 3 deletions
|
@ -751,7 +751,7 @@ ges_timeline_object_set_priority (GESTimelineObject * object, guint priority)
|
|||
* Note: If many objects match, then the one with the highest priority will be
|
||||
* returned.
|
||||
*
|
||||
* Returns: (transfer full): The #GESTrackObject used by @track, else #NULL.
|
||||
* Returns: (transfer full): The #GESTrackObject used by @track, else %NULL.
|
||||
* Unref after usage.
|
||||
*/
|
||||
|
||||
|
@ -790,7 +790,7 @@ ges_timeline_object_find_track_object (GESTimelineObject * object,
|
|||
* Get the #GESTimelineLayer to which this object belongs.
|
||||
*
|
||||
* Returns: (transfer full): The #GESTimelineLayer where this @object is being
|
||||
* used, or #NULL if it is not used on any layer. The caller should unref it
|
||||
* used, or %NULL if it is not used on any layer. The caller should unref it
|
||||
* usage.
|
||||
*/
|
||||
GESTimelineLayer *
|
||||
|
|
|
@ -932,7 +932,7 @@ ges_timeline_remove_track (GESTimeline * timeline, GESTrack * track)
|
|||
* Search the #GESTrack corresponding to the given @timeline's @pad.
|
||||
*
|
||||
* Returns: (transfer none): The corresponding #GESTrack if it is found,
|
||||
* or #NULL if there is an error.
|
||||
* or %NULL if there is an error.
|
||||
*/
|
||||
|
||||
GESTrack *
|
||||
|
|
Loading…
Reference in a new issue