Fix typos in attribute2ref() in Lib/typemaps/attribute.swg

AccessorName was being used instead of AttributeName.

Closes #1872.
This commit is contained in:
Zackery Spytz 2021-02-09 09:21:14 -07:00
commit bcfa927298
3 changed files with 7 additions and 1 deletions

View file

@ -95,6 +95,7 @@ struct MyFoo; // %attribute2 does not work with templates
// class/struct attribute with get/set methods using return/pass by reference
%attribute2(MyClass, MyFoo, Foo, GetFoo, SetFoo);
%attribute2ref(MyClass, MyFoo, Foo2);
%inline %{
struct MyFoo {
MyFoo() : x(-1) {}
@ -102,9 +103,11 @@ struct MyFoo; // %attribute2 does not work with templates
};
class MyClass {
MyFoo foo;
MyFoo foo2;
public:
MyFoo& GetFoo() { return foo; }
void SetFoo(const MyFoo& other) { foo = other; }
MyFoo& Foo2() { return foo2; }
};
%}

View file

@ -45,6 +45,9 @@ myClass = li_attribute.MyClass()
myClass.Foo = myFoo
if myClass.Foo.x != 8:
raise RuntimeError
myClass.Foo2 = myFoo
if myClass.Foo2.x != 8:
raise RuntimeError
# class/struct attribute with get/set methods using return/pass by value
myClassVal = li_attribute.MyClassVal()