From bb968bc5588ccb684b22af62990dcaf84eef8e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=B6ppe?= Date: Fri, 21 Nov 2003 09:18:10 +0000 Subject: [PATCH] Don't qualify member function names twice. (Thanks to John Lenz.) git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5363 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/guile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/guile.cxx b/Source/Modules/guile.cxx index b2a4186e9..809f56ed7 100644 --- a/Source/Modules/guile.cxx +++ b/Source/Modules/guile.cxx @@ -1119,7 +1119,7 @@ public: String *method_def = NewString(""); String *goops_name; if (in_class) - goops_name = goopsNameMapping(memberfunction_name, short_class_name); + goops_name = NewString(memberfunction_name); else goops_name = goopsNameMapping(proc_name, (char *)""); String *primitive_name = NewString("");