Merge branch 'patch-1'
* patch-1: nested_inheritance_interface testcase enhancement Add nested_inheritance_interface test for csharp Fix class name for nested classes Add nested_inheritance_interface test Fix class name for nested classes Conflicts: CHANGES.current
This commit is contained in:
commit
aea7a6d30f
7 changed files with 90 additions and 2 deletions
|
|
@ -1732,7 +1732,7 @@ public:
|
|||
Replaceall(cptr_method_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);
|
||||
|
||||
Delete(upcast_method_name);
|
||||
|
|
|
|||
|
|
@ -1876,7 +1876,7 @@ public:
|
|||
Replaceall(cptr_method_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);
|
||||
Delete(upcast_method_name);
|
||||
Delete(cptr_method_name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue