diff options
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 { |