summaryrefslogtreecommitdiff
path: root/Source/Modules/typepass.cxx
diff options
context:
space:
mode:
authorDave Beazley <dave-swig@dabeaz.com>2007-01-03 05:23:20 +0000
committerDave Beazley <dave-swig@dabeaz.com>2007-01-03 05:23:20 +0000
commitc12550e4ad0be537a98e18d7a0f768369bcae6fb (patch)
tree7e34cfc02d1325f0ded21ec64357d526b1c689f3 /Source/Modules/typepass.cxx
parent52dcbb9001f55281c67db0f08cc2d032c5e34d1c (diff)
downloadswig-c12550e4ad0be537a98e18d7a0f768369bcae6fb.tar.gz
API cleanup. Documentation
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9631 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Source/Modules/typepass.cxx')
-rw-r--r--Source/Modules/typepass.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Modules/typepass.cxx b/Source/Modules/typepass.cxx
index 7df7c4862..abcb0492c 100644
--- a/Source/Modules/typepass.cxx
+++ b/Source/Modules/typepass.cxx
@@ -866,12 +866,12 @@ class TypePass:private Dispatcher {
String *ucode = is_void ? NewStringf("{ self->%s(", Getattr(n, "uname")) : NewStringf("{ return self->%s(", Getattr(n, "uname"));
for (ParmList *p = parms; p;) {
- StringAppend(ucode, Getattr(p, k_name));
+ Append(ucode, Getattr(p, k_name));
p = nextSibling(p);
if (p)
- StringAppend(ucode, ",");
+ Append(ucode, ",");
}
- StringAppend(ucode, "); }");
+ Append(ucode, "); }");
Setattr(nn, "code", ucode);
Delete(ucode);
}