diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2005-08-06 11:48:27 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2005-08-06 11:48:27 (GMT) |
commit | bedb86023002aa3985c914d330f54314d211bdc0 (patch) | |
tree | 340cca67808f566b0c458391835834e717e26a61 /src/pycode.l | |
parent | 64c0fdd7432f5d9ddd815fbb459c651f6933a2ea (diff) | |
download | Doxygen-bedb86023002aa3985c914d330f54314d211bdc0.zip Doxygen-bedb86023002aa3985c914d330f54314d211bdc0.tar.gz Doxygen-bedb86023002aa3985c914d330f54314d211bdc0.tar.bz2 |
Release-1.4.4-20050806
Diffstat (limited to 'src/pycode.l')
-rw-r--r-- | src/pycode.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pycode.l b/src/pycode.l index 175556a..5e66693 100644 --- a/src/pycode.l +++ b/src/pycode.l @@ -710,7 +710,7 @@ static void generateFunctionLink(CodeOutputInterface &ol,char *funcName) return; } -static void findMemberLink(CodeOutputInterface &ol,const char *symName) +static void findMemberLink(CodeOutputInterface &ol,char *symName) { //printf("Member reference: %s scope=%s member=%s\n", // yytext, @@ -757,7 +757,7 @@ static void findMemberLink(CodeOutputInterface &ol,const char *symName) } } //printf("sym %s not found\n",&yytext[5]); - codify(yytext); + codify(symName); } static void startFontClass(const char *s) |