diff options
author | Stef Walter <stef@memberwebs.com> | 2005-06-08 19:01:49 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2005-06-08 19:01:49 +0000 |
commit | bcd05eba8c68c27cedd24b816969ae0146dc7901 (patch) | |
tree | 2ab80cdcae7eb1d690d8ec15c522d2698d3dd689 /src/rtfparser.h | |
parent | 48228b26155ad4f5dd744482c4fd0b0c2163b02e (diff) |
Unicode should now work properly. See #37
Diffstat (limited to 'src/rtfparser.h')
-rw-r--r-- | src/rtfparser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtfparser.h b/src/rtfparser.h index fe2d415..9f0289e 100644 --- a/src/rtfparser.h +++ b/src/rtfparser.h @@ -71,7 +71,8 @@ public: { return m_depth; } void setHexParse(bool parse) { m_parseHex = parse; } - void setUnicode(bool unicode); + void setUnicode(bool unicode) + { m_parseUnicode = unicode; } protected: RtfHandler* m_handler; // The current handler @@ -79,7 +80,6 @@ protected: bool m_parseHex; // Whether to parse hex chars or not string m_parseErrors; // A list of all the RTF parsing errors - // TODO: Look at exactly what this is doing // Unicode char handling bool m_parseUnicode; typedef std::stack<int> StackInt; |