aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/bookmaker/mdOut.cpp
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2017-08-25 13:14:33 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-08-25 17:32:57 +0000
commit493df1f9f3cfd6240558b75ec7664815a63dcd94 (patch)
treed9300132370cefca8b6e997607e47c29853a3fb9 /tools/bookmaker/mdOut.cpp
parent6888c0d40c35a8f09e40a26d8ebd0053ce2faf66 (diff)
try again to fix method links
generate method links from fiddle names to keep them consistent and unique. Docs-Preview: https://skia.org/?cl=38727 Bug: skia:6898 Change-Id: I3434801b46002a3a9095e007d456e9e871307304 Reviewed-on: https://skia-review.googlesource.com/38727 Commit-Queue: Cary Clark <caryclark@skia.org> Reviewed-by: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'tools/bookmaker/mdOut.cpp')
-rw-r--r--tools/bookmaker/mdOut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bookmaker/mdOut.cpp b/tools/bookmaker/mdOut.cpp
index 15ccf79e96..744122a0a4 100644
--- a/tools/bookmaker/mdOut.cpp
+++ b/tools/bookmaker/mdOut.cpp
@@ -674,7 +674,7 @@ void MdOut::markTypeOut(Definition* def) {
if (!def->isClone()) {
this->lfAlways(2);
- fprintf(fOut, "<a name=\"%s\"></a>", def->fiddleName().c_str());
+ fprintf(fOut, "<a name=\"%s\"></a>", def->fFiddle.c_str());
this->mdHeaderOutLF(2, 1);
fprintf(fOut, "%s", method_name.c_str());
this->lf(2);