Fixed: typo that prevent the generation of slots/signals/properties with int
This commit is contained in:
parent
665f6c6b64
commit
9b8985c701
|
@ -21,7 +21,7 @@ let nimFromQtVariant {.compileTime.} = {
|
||||||
|
|
||||||
let nim2QtMeta {.compileTime.} = {
|
let nim2QtMeta {.compileTime.} = {
|
||||||
"bool": "Bool",
|
"bool": "Bool",
|
||||||
"int " : "Int",
|
"int" : "Int",
|
||||||
"string" : "QString",
|
"string" : "QString",
|
||||||
"pointer" : "VoidStar",
|
"pointer" : "VoidStar",
|
||||||
"QVariant": "QVariant",
|
"QVariant": "QVariant",
|
||||||
|
|
Loading…
Reference in New Issue