Skip to content

Commit

Permalink
multimedia: add blocklist for QWaveDecoder::setIODevice
Browse files Browse the repository at this point in the history
  • Loading branch information
mappu committed Nov 11, 2024
1 parent 92ec0bc commit a6d3145
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/genbindings/config-allowlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit a6d3145

Please sign in to comment.