summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/ditaxmlgenerator.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@nokia.com>2011-01-07 07:32:24 (GMT)
committerMartin Smith <martin.smith@nokia.com>2011-01-07 07:32:24 (GMT)
commitf9400e81d6e817eb16651e01bb3710cf8562c926 (patch)
treec1aa61336f887ebfcdf90c0b25c0469edeb3e63a /tools/qdoc3/ditaxmlgenerator.cpp
parente3a3ae24e54a4461498ae8185b89bdf429e68574 (diff)
downloadQt-f9400e81d6e817eb16651e01bb3710cf8562c926.zip
Qt-f9400e81d6e817eb16651e01bb3710cf8562c926.tar.gz
Qt-f9400e81d6e817eb16651e01bb3710cf8562c926.tar.bz2
qdoc: Replaced many raw-html cases with \div {something}.
Diffstat (limited to 'tools/qdoc3/ditaxmlgenerator.cpp')
-rw-r--r--tools/qdoc3/ditaxmlgenerator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qdoc3/ditaxmlgenerator.cpp b/tools/qdoc3/ditaxmlgenerator.cpp
index 1595f72..f9c8cc5 100644
--- a/tools/qdoc3/ditaxmlgenerator.cpp
+++ b/tools/qdoc3/ditaxmlgenerator.cpp
@@ -752,12 +752,12 @@ int DitaXmlGenerator::generateAtom(const Atom *atom,
writeCharacters(trimmedTrailing(plainCode(atom->string())));
xmlWriter().writeEndElement(); // </codeblock>
break;
- case Atom::Div:
+ case Atom::DivLeft:
xmlWriter().writeStartElement("sectiondiv");
if (!atom->string().isEmpty())
xmlWriter().writeAttribute("outputclass", atom->string());
break;
- case Atom::EndDiv:
+ case Atom::DivRight:
xmlWriter().writeEndElement(); // </sectiondiv>
break;
case Atom::FootnoteLeft: