summaryrefslogtreecommitdiffstats
path: root/src/definition.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/definition.cpp')
-rw-r--r--src/definition.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/definition.cpp b/src/definition.cpp
index d93f57d..02bb2f1 100644
--- a/src/definition.cpp
+++ b/src/definition.cpp
@@ -1,6 +1,6 @@
/******************************************************************************
*
- * $Id$
+ *
*
* Copyright (C) 1997-2000 by Dimitri van Heesch.
*
@@ -36,6 +36,8 @@ Definition::~Definition()
QCString Definition::nameToFile(const char *name)
{
+ return convertNameToFile(name);
+#if 0
QCString result;
char c;
const char *p=name;
@@ -61,6 +63,7 @@ QCString Definition::nameToFile(const char *name)
}
}
return result;
+#endif
}
void Definition::addSectionsToDefinition(QList<QCString> *anchorList)
@@ -280,10 +283,7 @@ bool Definition::hasDocumentation()
{
return !doc.isEmpty() || // has detailed docs
!brief.isEmpty() || // has brief description
- (Config::sourceBrowseFlag &&
- startBodyLine!=-1 &&
- bodyDef
- ) || // has a source reference
+ /*(Config::sourceBrowseFlag && startBodyLine!=-1 && bodyDef) || // has a source reference */
Config::extractAllFlag; // extract everything
}