diff options
Diffstat (limited to 'src/htmlentity.h')
-rw-r--r-- | src/htmlentity.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/htmlentity.h b/src/htmlentity.h index 7e54066..5337280 100644 --- a/src/htmlentity.h +++ b/src/htmlentity.h @@ -15,7 +15,9 @@ #ifndef HTMLENTITY_H #define HTMLENTITY_H -#include <qdict.h> +#include <unordered_map> +#include <string> + #include "docparser.h" class FTextStream; @@ -41,7 +43,7 @@ class HtmlEntityMapper HtmlEntityMapper(); ~HtmlEntityMapper(); static HtmlEntityMapper *s_instance; - QDict<int> *m_name2sym; + std::unordered_map<std::string,DocSymbol::SymType> m_name2sym; }; #endif |