mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
er, that's g_type_class_ref()
Original commit message from CVS: er, that's g_type_class_ref()
This commit is contained in:
parent
6f07363ea2
commit
8ee5b40c0c
2 changed files with 4 additions and 4 deletions
|
@ -261,8 +261,8 @@ sub check_deprecated()
|
|||
if (grep { /GstEventFlags/; } @lines) {
|
||||
print "W: who uses GstEventFlags\n";
|
||||
}
|
||||
if (grep { /gst_type_class_ref/; } @lines) {
|
||||
print "W: gst_type_class_ref should be changed to gst_type_class_peek_parent\n";
|
||||
if (grep { /g_type_class_ref/ } @lines) {
|
||||
print "W: g_type_class_ref should be changed to g_type_class_peek_parent\n";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -261,8 +261,8 @@ sub check_deprecated()
|
|||
if (grep { /GstEventFlags/; } @lines) {
|
||||
print "W: who uses GstEventFlags\n";
|
||||
}
|
||||
if (grep { /gst_type_class_ref/; } @lines) {
|
||||
print "W: gst_type_class_ref should be changed to gst_type_class_peek_parent\n";
|
||||
if (grep { /g_type_class_ref/ } @lines) {
|
||||
print "W: g_type_class_ref should be changed to g_type_class_peek_parent\n";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue