From 5cdf62661c88b5f0c135337da4d6e58581aad037 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Mon, 6 Apr 2015 15:51:37 +0200 Subject: Bug 747111 - Table of content incorrect with escaped symbols --- src/definition.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/definition.cpp b/src/definition.cpp index 99a77b5..457c6ea 100644 --- a/src/definition.cpp +++ b/src/definition.cpp @@ -1667,7 +1667,8 @@ void Definition::writeToc(OutputList &ol) } cs[0]='0'+nextLevel; if (inLi[nextLevel]) ol.writeString("\n"); - ol.writeString("
  • label+"\">"+(si->title.isEmpty()?si->label:si->title)+""); + QCString titleDoc = convertToHtml(si->title); + ol.writeString("
  • label+"\">"+(si->title.isEmpty()?si->label:titleDoc)+""); inLi[nextLevel]=TRUE; level = nextLevel; } -- cgit v0.12