diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-09-27 17:06:31 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-09-27 17:06:31 (GMT) |
commit | 5ed55684b0226c2371f1d39cd7f984da44c9ccb1 (patch) | |
tree | f0751a83dd63c0dc8f76a3cd2044acf074e860a2 /src/doxygen.cpp | |
parent | 482b6bd47a106e132ff06bb410e87c8e0da643d2 (diff) | |
download | Doxygen-5ed55684b0226c2371f1d39cd7f984da44c9ccb1.zip Doxygen-5ed55684b0226c2371f1d39cd7f984da44c9ccb1.tar.gz Doxygen-5ed55684b0226c2371f1d39cd7f984da44c9ccb1.tar.bz2 |
Release-1.2.18-20020927
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 3756c21..9164ed6 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -1899,7 +1899,7 @@ static void buildFunctionList(Entry *root) { Debug::print(Debug::Functions,0, "FUNCTION_SEC:\n" - " `%s' `%s'::`%s' `%s' relates=`%s' file=`%s' line=`%d' bodyLine=`%d' #tArgLists=%d mGrpId=%d memSpec=%d proto=%d\n", + " `%s' `%s'::`%s' `%s' relates=`%s' file=`%s' line=`%d' bodyLine=`%d' #tArgLists=%d mGrpId=%d memSpec=%d proto=%d docFile=%s\n", root->type.data(), root->parent->name.data(), root->name.data(), @@ -1913,7 +1913,8 @@ static void buildFunctionList(Entry *root) //root->mtArgList ? (int)root->mtArgList->count() : -1, root->mGrpId, root->memSpec, - root->proto + root->proto, + root->docFile.data() ); bool isFriend=root->type.find("friend ")!=-1; |