diff options
author | albert-github <albert.tests@gmail.com> | 2016-09-02 14:34:43 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-09-03 09:43:07 (GMT) |
commit | 558958dca5e5cb50bd33f3344cab151aba9ce076 (patch) | |
tree | fc9995ba8e53c8d525a92886f2eee11bff8057e1 /src/util.cpp | |
parent | 0bdf976df43dfc1eea03fd3e31d949d05422b2ca (diff) | |
download | Doxygen-558958dca5e5cb50bd33f3344cab151aba9ce076.zip Doxygen-558958dca5e5cb50bd33f3344cab151aba9ce076.tar.gz Doxygen-558958dca5e5cb50bd33f3344cab151aba9ce076.tar.bz2 |
Sorting in latex index and missing \@ in index
When looking at the index of the doxygen (pdf) manual we see that __init__ is on a bit strnge place (between "\" items) and that the item "\@" is missing.
Made handling of the index consistent by using latex... routines and adjusting the label routine in respect to the @.
Diffstat (limited to 'src/util.cpp')
-rwxr-xr-x | src/util.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index efd3d3c..f1ebf8b 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -6744,6 +6744,7 @@ QCString latexEscapeLabelName(const char *s,bool insideTabbing) { case '|': t << "\\texttt{\"|}"; break; case '!': t << "\"!"; break; + case '@': t << "\"@"; break; case '%': t << "\\%"; break; case '{': t << "\\lcurly{}"; break; case '}': t << "\\rcurly{}"; break; @@ -6753,7 +6754,7 @@ QCString latexEscapeLabelName(const char *s,bool insideTabbing) i=0; // collect as long string as possible, before handing it to docify tmp[i++]=c; - while ((c=*p) && c!='|' && c!='!' && c!='%' && c!='{' && c!='}' && c!='~') + while ((c=*p) && c!='@' && c!='[' && c!=']' && c!='!' && c!='{' && c!='}' && c!='|') { tmp[i++]=c; p++; |