diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2011-06-29 20:14:58 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2011-06-29 20:14:58 (GMT) |
commit | 9f83539241a64ce7f74d80c118e555e1fc8f8077 (patch) | |
tree | e669e210441ef87fa9a366b99d90a0c8d8ae944b /src/qhp.cpp | |
parent | 0bb78ec1f61b95b550b65361081c01a104728341 (diff) | |
download | Doxygen-9f83539241a64ce7f74d80c118e555e1fc8f8077.zip Doxygen-9f83539241a64ce7f74d80c118e555e1fc8f8077.tar.gz Doxygen-9f83539241a64ce7f74d80c118e555e1fc8f8077.tar.bz2 |
Release-1.7.4-20110629
Diffstat (limited to 'src/qhp.cpp')
-rw-r--r-- | src/qhp.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qhp.cpp b/src/qhp.cpp index 6a9e28e..07230d9 100644 --- a/src/qhp.cpp +++ b/src/qhp.cpp @@ -33,6 +33,7 @@ static QCString makeFileName(const char * withoutExtension) static QCString makeRef(const char * withoutExtension, const char * anchor) { + //printf("QHP::makeRef(%s,%s)\n",withoutExtension,anchor); if (!withoutExtension) return QCString(); QCString result = makeFileName(withoutExtension); if (!anchor) return result; @@ -191,6 +192,10 @@ void Qhp::addIndexItem(Definition *context,MemberDef *md, const char *word) { (void)word; + //printf("addIndexItem(%s %s %s\n", + // context?context->name().data():"<none>", + // md?md->name().data():"<none>", + // word); if (md) // member { |