diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2005-05-16 10:07:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2005-05-16 10:07:22 (GMT) |
commit | 530402f723b5426086bc8efdb9b7c6513e2ed3fa (patch) | |
tree | 4031df0b930759962f9126116d333cec031ca5cb /src/commentscan.l | |
parent | 5bd970b12ec39636593453d12e5b64bd935bbf38 (diff) | |
download | Doxygen-530402f723b5426086bc8efdb9b7c6513e2ed3fa.zip Doxygen-530402f723b5426086bc8efdb9b7c6513e2ed3fa.tar.gz Doxygen-530402f723b5426086bc8efdb9b7c6513e2ed3fa.tar.bz2 |
Release-1.4.3
Diffstat (limited to 'src/commentscan.l')
-rw-r--r-- | src/commentscan.l | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index e8f3725..31a7c52 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -501,10 +501,10 @@ static void checkFormula(); static void prependScope() { +#if 0 Entry *current_root = current->parent; if (current_root && current_root->section & Entry::SCOPE_MASK) { - //printf("--- prependScope %s to %s\n",current_root->name.data(),current->name.data()); current->name.prepend(current_root->name+"::"); if (current_root->tArgLists) { @@ -513,7 +513,6 @@ static void prependScope() current->tArgLists = new QList<ArgumentList>; current->tArgLists->setAutoDelete(TRUE); } - //printf("prependScope #=%d #current=%d\n",current_root->tArgLists->count(),current->tArgLists->count()); QListIterator<ArgumentList> talsi(*current_root->tArgLists); ArgumentList *srcAl=0; for (talsi.toLast();(srcAl=talsi.current());--talsi) @@ -525,12 +524,12 @@ static void prependScope() for (;(a=tali.current());++tali) { dstAl->append(new Argument(*a)); - //printf("appending argument %s %s\n",a->type.data(),a->name.data()); } current->tArgLists->insert(0,dstAl); } } } +#endif } static void addSection() |