From 44d34e022dbcda08908c298b5328e0b0bdda6f09 Mon Sep 17 00:00:00 2001 From: Stef Date: Fri, 23 Jul 2004 22:01:58 +0000 Subject: - Code cleanup. --- src/rtfparser.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'src/rtfparser.h') diff --git a/src/rtfparser.h b/src/rtfparser.h index 6b9e10d..e1636fc 100644 --- a/src/rtfparser.h +++ b/src/rtfparser.h @@ -36,10 +36,8 @@ * */ -// RENAME RTFParser.h - -#ifndef __RTFREADER_H__ -#define __RTFREADER_H__ +#ifndef __RTFPARSER_H__ +#define __RTFPARSER_H__ #include "usuals.h" #include @@ -48,7 +46,7 @@ class RtfHandler; /* - * RTFParser + * RtfParser * * A class that parses the RTF into it's tags and groups etc... It feeds its * parsed data into into a handler interface (see below) for processing. @@ -111,9 +109,9 @@ private: }; /* - * RTFHandler + * RtfHandler * - * An interface called by RTFParser with tags and groups etc... parsed from + * An interface called by RtfParser with tags and groups etc... parsed from * an RTF file. */ class RtfHandler @@ -121,7 +119,7 @@ class RtfHandler public: // Called at the beginning of the document - virtual void startDocument(RtfReader* reader) = 0; + virtual void startDocument(RtfParser* reader) = 0; // Called at the end of the document virtual void endDocument() = 0; @@ -148,4 +146,4 @@ public: }; }; -#endif // __RTFREADER_H__ +#endif // __RTFPARSER_H__ -- cgit v1.2.3