summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-07-23 12:34:14 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-07-23 12:34:14 (GMT)
commit98f0816fc000c39f770523b29c68eb68d6ef06d5 (patch)
tree2f9d2b657ef9464a86fd65323f9130b89d225728 /src/htmlgen.cpp
parentff7d28bd0ea7538d4a9c65facd0b5ca057f867d8 (diff)
parenta2ae382198092537b6b5c85f9c7e5615046d3c78 (diff)
downloadDoxygen-98f0816fc000c39f770523b29c68eb68d6ef06d5.zip
Doxygen-98f0816fc000c39f770523b29c68eb68d6ef06d5.tar.gz
Doxygen-98f0816fc000c39f770523b29c68eb68d6ef06d5.tar.bz2
Merge branch 'short_member_title' of https://github.com/PkLab/doxygen into PkLab-short_member_title
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 069cafa..fff9693 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1551,10 +1551,14 @@ void HtmlGenerator::endMemberDocList()
DBG_HTML(t << "<!-- endMemberDocList -->" << endl;)
}
-void HtmlGenerator::startMemberDoc(const char *,const char *,const char *,const char *,bool)
-{
+void HtmlGenerator::startMemberDoc( const char *clName, const char *memName,
+ const char *anchor, const char *title, bool showInline)
+{
DBG_HTML(t << "<!-- startMemberDoc -->" << endl;)
-
+ t << "\n<h2 class=\"memtitle\">" << title << " "
+ << "<a href=\"#" << anchor << "\" class=\"permantlink\"" "title=\"Permalink to this headline\">&#9854;</a>"
+ << "</h2>"
+ << endl;
t << "\n<div class=\"memitem\">" << endl;
t << "<div class=\"memproto\">" << endl;
}