multimedia: add blocklist for QWaveDecoder::setIODevice

This commit is contained in:
mappu 2024-11-11 19:05:09 +13:00
parent 92ec0bc0a4
commit a6d314559f

View File

@ -210,6 +210,10 @@ func AllowMethod(className string, mm CppMethod) error {
return ErrTooComplex // Present in Qt 5.15 and 6.4, missing in Qt 6.7
}
if className == "QWaveDecoder" && mm.MethodName == "setIODevice" {
return ErrTooComplex // Qt 6: Present in header, but no-op method was not included in compiled library
}
return nil // OK, allow
}