summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-07-26 10:04:12 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-07-26 10:04:12 (GMT)
commitf8fd003f135553517ae2892c8df48c241b7a59c8 (patch)
tree6b1cbcf0b169f9c71fa692dd51f066a16dc72e64
parent8b128b291d9bad7c73e52c78be9a77f8a867825b (diff)
parent69d5ffaa68210a6e63a618ef304c63462f6e1fac (diff)
downloadDoxygen-f8fd003f135553517ae2892c8df48c241b7a59c8.zip
Doxygen-f8fd003f135553517ae2892c8df48c241b7a59c8.tar.gz
Doxygen-f8fd003f135553517ae2892c8df48c241b7a59c8.tar.bz2
Merge pull request #370 from albert-github/feature/bug_661814
Bug 661814 - writeMemberNavIndex template calls static fixSpaces
-rw-r--r--src/htmlgen.cpp5
-rw-r--r--src/index.h1
2 files changed, 1 insertions, 5 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index a2dd473..dadbb4f 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1952,11 +1952,6 @@ static void endQuickIndexItem(FTextStream &t,const char *l)
t << "</li>\n";
}
-static QCString fixSpaces(const QCString &s)
-{
- return substitute(s," ","&#160;");
-}
-
static bool quickLinkVisible(LayoutNavEntry::Kind kind)
{
static bool showFiles = Config_getBool("SHOW_FILES");
diff --git a/src/index.h b/src/index.h
index 150d23f..ace3614 100644
--- a/src/index.h
+++ b/src/index.h
@@ -284,5 +284,6 @@ void initNamespaceMemberIndices();
void addClassMemberNameToIndex(MemberDef *md);
void addFileMemberNameToIndex(MemberDef *md);
void addNamespaceMemberNameToIndex(MemberDef *md);
+QCString fixSpaces(const QCString &s);
#endif