summaryrefslogtreecommitdiffstats
path: root/src/dirdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2010-07-28 19:05:01 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2010-07-28 19:05:01 (GMT)
commit4ad0d24c5b3a0afd99722ae5c33968ff9fa44e2d (patch)
treeaa81c2bd3e6109417a6bd30d6a58111d892f25f2 /src/dirdef.cpp
parentc37c8626674dd6ba0d53dcad84dd4bb5d92005a4 (diff)
downloadDoxygen-4ad0d24c5b3a0afd99722ae5c33968ff9fa44e2d.zip
Doxygen-4ad0d24c5b3a0afd99722ae5c33968ff9fa44e2d.tar.gz
Doxygen-4ad0d24c5b3a0afd99722ae5c33968ff9fa44e2d.tar.bz2
Release-1.7.1-20100728
Diffstat (limited to 'src/dirdef.cpp')
-rw-r--r--src/dirdef.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dirdef.cpp b/src/dirdef.cpp
index 84fa3ab..333513b 100644
--- a/src/dirdef.cpp
+++ b/src/dirdef.cpp
@@ -434,7 +434,7 @@ void DirDef::writePathFragment(OutputList &ol) const
if (m_parent)
{
m_parent->writePathFragment(ol);
- ol.writeString("&nbsp;/&nbsp;");
+ ol.writeString("&#160;/&#160;");
}
ol.writeObjectLink(getReference(),getOutputFileBase(),0,shortName());
}
@@ -675,7 +675,7 @@ static void writePartialDirPath(OutputList &ol,const DirDef *root,const DirDef *
if (target->parent()!=root)
{
writePartialDirPath(ol,root,target->parent());
- ol.writeString("&nbsp;/&nbsp;");
+ ol.writeString("&#160;/&#160;");
}
ol.writeObjectLink(target->getReference(),target->getOutputFileBase(),0,target->shortName());
}
@@ -685,7 +685,7 @@ static void writePartialFilePath(OutputList &ol,const DirDef *root,const FileDef
if (fd->getDirDef() && fd->getDirDef()!=root)
{
writePartialDirPath(ol,root,fd->getDirDef());
- ol.writeString("&nbsp;/&nbsp;");
+ ol.writeString("&#160;/&#160;");
}
if (fd->isLinkable())
{