mirror of https://github.com/swig/swig
Fix class name for nested classes
This commit is contained in:
parent
84e310402a
commit
63497c8d0e
|
@ -1732,7 +1732,7 @@ public:
|
||||||
Replaceall(cptr_method_name, ".", "_");
|
Replaceall(cptr_method_name, ".", "_");
|
||||||
Replaceall(cptr_method_name, "$interfacename", interface_name);
|
Replaceall(cptr_method_name, "$interfacename", interface_name);
|
||||||
|
|
||||||
String *upcast_method_name = Swig_name_member(getNSpace(), proxy_class_name, cptr_method_name);
|
String *upcast_method_name = Swig_name_member(getNSpace(), getClassPrefix(), cptr_method_name);
|
||||||
upcastsCode(smart, upcast_method_name, c_classname, c_baseclass);
|
upcastsCode(smart, upcast_method_name, c_classname, c_baseclass);
|
||||||
|
|
||||||
Delete(upcast_method_name);
|
Delete(upcast_method_name);
|
||||||
|
|
Loading…
Reference in New Issue