diff options
Diffstat (limited to 'src/xmlfixups.h')
-rw-r--r-- | src/xmlfixups.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xmlfixups.h b/src/xmlfixups.h index 1716925..f00bb66 100644 --- a/src/xmlfixups.h +++ b/src/xmlfixups.h @@ -36,23 +36,23 @@ * */ -#ifndef __RTFFIXUPS_H__ -#define __RTFFIXUPS_H__ +#ifndef __XMLFIXUPS_H__ +#define __XMLFIXUPS_H__ #include "sablo.h" /* - * XMLFixups + * XmlFixups * * Because RTF is so 'different' (read: brain dead) we need to do all sorts * of antics to get it into a nice XML format. Some of the XML Composition - * is done in XMLComposer, but whatever can't be done there as we're parsing + * is done in XmlComposer, but whatever can't be done there as we're parsing * gets done here after the fact. * - * These functions are called from XMLComposer::endDocument and massage the + * These functions are called from XmlComposer::endDocument and massage the * resulting XML DOM into shape. */ -class XMLFixups +class XmlFixups { public: // Replace blocks with 'fix' elements like paragraphs @@ -133,4 +133,4 @@ public: static void consolidateEndTags(DOM::Document& doc); }; -#endif // __RTFFIXUPS_H__ +#endif // __XMLFIXUPS_H__ |