er, that's g_type_class_ref()

Original commit message from CVS:
er, that's g_type_class_ref()
This commit is contained in:
David Schleef 2003-11-11 00:44:20 +00:00
parent 6f07363ea2
commit 8ee5b40c0c
2 changed files with 4 additions and 4 deletions

View file

@ -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";
}
}

View file

@ -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";
}
}