diff options
Diffstat (limited to 'src/dirdef.cpp')
-rw-r--r-- | src/dirdef.cpp | 6 |
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(" / "); + ol.writeString(" / "); } 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(" / "); + ol.writeString(" / "); } 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(" / "); + ol.writeString(" / "); } if (fd->isLinkable()) { |