mirror of
https://github.com/mappu/miqt.git
synced 2025-04-03 20:20:22 +00:00
genbindings: fix QClipboard private dtor
This commit is contained in:
parent
e57459c5e7
commit
441d96398f
@ -343,7 +343,9 @@ extern "C" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// delete
|
// delete
|
||||||
ret.WriteString(fmt.Sprintf("void %s_Delete(%s* self);\n", c.ClassName, c.ClassName))
|
if AllowDelete(c) {
|
||||||
|
ret.WriteString(fmt.Sprintf("void %s_Delete(%s* self);\n", c.ClassName, c.ClassName))
|
||||||
|
}
|
||||||
|
|
||||||
ret.WriteString("\n")
|
ret.WriteString("\n")
|
||||||
}
|
}
|
||||||
@ -495,13 +497,15 @@ func emitBindingCpp(src *CppParsedHeader, filename string) (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Delete
|
// Delete
|
||||||
ret.WriteString(fmt.Sprintf(
|
if AllowDelete(c) {
|
||||||
"void %s_Delete(%s* self) {\n"+
|
ret.WriteString(fmt.Sprintf(
|
||||||
"\tdelete self;\n"+
|
"void %s_Delete(%s* self) {\n"+
|
||||||
"}\n"+
|
"\tdelete self;\n"+
|
||||||
"\n",
|
"}\n"+
|
||||||
c.ClassName, c.ClassName,
|
"\n",
|
||||||
))
|
c.ClassName, c.ClassName,
|
||||||
|
))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret.String(), nil
|
return ret.String(), nil
|
||||||
|
@ -376,11 +376,13 @@ import "C"
|
|||||||
`)
|
`)
|
||||||
}
|
}
|
||||||
|
|
||||||
ret.WriteString(`
|
if AllowDelete(c) {
|
||||||
func (this *` + c.ClassName + `) Delete() {
|
ret.WriteString(`
|
||||||
C.` + c.ClassName + `_Delete(this.h)
|
func (this *` + c.ClassName + `) Delete() {
|
||||||
|
C.` + c.ClassName + `_Delete(this.h)
|
||||||
|
}
|
||||||
|
`)
|
||||||
}
|
}
|
||||||
`)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
|
func AllowDelete(c CppClass) bool {
|
||||||
|
switch c.ClassName {
|
||||||
|
case "QClipboard":
|
||||||
|
return false // The destructor is marked private. TODO grab this from the AST
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
func CheckComplexity(p CppParameter) error {
|
func CheckComplexity(p CppParameter) error {
|
||||||
|
|
||||||
if p.QMapOf() {
|
if p.QMapOf() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user