summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2006-02-27 20:11:09 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2006-02-27 20:11:09 (GMT)
commit0a773cb15d41e5806b799cd24c076c60b734615c (patch)
tree5e27018c48206637a831c02760f69c7df275f1c9 /src/commentscan.l
parenta9a600c4692a1d0b0a6a09362db1d6da8bda9a30 (diff)
downloadDoxygen-0a773cb15d41e5806b799cd24c076c60b734615c.zip
Doxygen-0a773cb15d41e5806b799cd24c076c60b734615c.tar.gz
Doxygen-0a773cb15d41e5806b799cd24c076c60b734615c.tar.bz2
Release-1.4.6-20060227
Diffstat (limited to 'src/commentscan.l')
-rw-r--r--src/commentscan.l36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index fba617b..efd46b3 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -515,39 +515,6 @@ static QCString addFormula()
static void checkFormula();
//-----------------------------------------------------------------------------
-static void prependScope()
-{
-#if 0
- Entry *current_root = current->parent;
- if (current_root && current_root->section & Entry::SCOPE_MASK)
- {
- current->name.prepend(current_root->name+"::");
- if (current_root->tArgLists)
- {
- if (current->tArgLists==0)
- {
- current->tArgLists = new QList<ArgumentList>;
- current->tArgLists->setAutoDelete(TRUE);
- }
- QListIterator<ArgumentList> talsi(*current_root->tArgLists);
- ArgumentList *srcAl=0;
- for (talsi.toLast();(srcAl=talsi.current());--talsi)
- {
- ArgumentList *dstAl = new ArgumentList;
- dstAl->setAutoDelete(TRUE);
- QListIterator<Argument> tali(*srcAl);
- Argument *a;
- for (;(a=tali.current());++tali)
- {
- dstAl->append(new Argument(*a));
- }
- current->tArgLists->insert(0,dstAl);
- }
- }
- }
-#endif
-}
-
static void addSection()
{
sectionTitle+=yytext;
@@ -994,7 +961,6 @@ MAILADR [a-z_A-Z0-9.+\-]+"@"[a-z_A-Z0-9\-]+("."[a-z_A-Z0-9\-]+)+[a-z_A-Z0-9\-]
<EnumDocArg1>{SCOPEID} { // handle argument
current->name = yytext;
- prependScope();
BEGIN( Comment );
}
<EnumDocArg1>{LC} { // line continuation
@@ -1065,12 +1031,10 @@ MAILADR [a-z_A-Z0-9.+\-]+"@"[a-z_A-Z0-9\-]+("."[a-z_A-Z0-9\-]+)+[a-z_A-Z0-9\-]
current->name+="-p";
}
// prepend outer scope name
- prependScope();
BEGIN( ClassDocArg2 );
}
<CategoryDocArg1>{SCOPENAME}{B}*"("[^\)]+")" {
current->name = yytext;
- prependScope();
BEGIN( ClassDocArg2 );
}
<ClassDocArg1,CategoryDocArg1>{LC} { // line continuation