diff options
author | Stef Walter <stef@memberwebs.com> | 2004-07-23 22:01:58 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-07-23 22:01:58 +0000 |
commit | 47d4f141d6a5436e20f10ea62d48a5b3051e3718 (patch) | |
tree | 8761c84be69a34d3ca175293f87f26eb98b02e40 /src/xmlcomposer.h | |
parent | 879f4addd4c94492c21c36c0be98122a879907bf (diff) |
- Code cleanup.
Diffstat (limited to 'src/xmlcomposer.h')
-rw-r--r-- | src/xmlcomposer.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/xmlcomposer.h b/src/xmlcomposer.h index 4e5c739..97eb533 100644 --- a/src/xmlcomposer.h +++ b/src/xmlcomposer.h @@ -36,10 +36,8 @@ * */ -// RENAME: xmlcomposer.h - -#ifndef __RTFPARSER_H__ -#define __RTFPARSER_H__ +#ifndef __XMLCOMPOSER_H__ +#define __XMLCOMPOSER_H__ #include "levelhandler.h" @@ -123,7 +121,7 @@ public: DOM::Document getDocument() { return m_document; } - const RtfParserOptions& getOptions() + const XmlComposerOptions& getOptions() { return m_options; } @@ -140,7 +138,7 @@ protected: protected: DOM::DOMImplementation m_impl; // For creating the document DOM::Document m_document; // The current document - RtfParserOptions m_options; // Configurable options for parsing + XmlComposerOptions m_options; // Configurable options for parsing int m_autocount[AUTOCOUNT_MAX]; // Auto counters for the document @@ -295,4 +293,4 @@ protected: END_ANALYSER }; -#endif // __RTFPARSER_H__ +#endif // __XMLCOMPOSER_H__ |