scintillaedit: block some Scintilla::Internal abstract classes

This commit is contained in:
mappu 2025-04-05 21:30:46 +13:00
parent 88c6d51dc1
commit 88896b4459

View File

@ -277,6 +277,15 @@ func AllowVirtualForClass(className string) bool {
return false
}
// QScintilla
// Pure virtuals
if className == "Scintilla::Internal::Surface" {
return false
}
if className == "Scintilla::Internal::ListBox" {
return false
}
// Qt 5 QWebkit: undefined reference to typeinfo
if className == "QWebNotificationPresenter" {
return false