diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-24 16:19:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-24 16:19:58 +0300 |
commit | 7f45d87f62eeef171d4873e95d1de8dfac2446af (patch) | |
tree | 5b05d83fb089257bb333c1525976cc172af8327b /src/utils | |
parent | bd231fc40ca54f7dd2e091c5ab414f4cebb3b05e (diff) | |
download | plus-7f45d87f62eeef171d4873e95d1de8dfac2446af.tar.gz plus-7f45d87f62eeef171d4873e95d1de8dfac2446af.tar.bz2 plus-7f45d87f62eeef171d4873e95d1de8dfac2446af.tar.xz plus-7f45d87f62eeef171d4873e95d1de8dfac2446af.zip |
Fix compilation errors.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/translation/podict.h | 2 | ||||
-rw-r--r-- | src/utils/xml.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/utils/translation/podict.h b/src/utils/translation/podict.h index 71c604f38..4a62c6da8 100644 --- a/src/utils/translation/podict.h +++ b/src/utils/translation/podict.h @@ -24,6 +24,8 @@ #include <string> #include <map> +#include "localconsts.h" + typedef std::map <std::string, std::string> PoMap; class PoDict final diff --git a/src/utils/xml.h b/src/utils/xml.h index 40922db5d..e72d72070 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -29,6 +29,8 @@ #include <string> +#include "localconsts.h" + #define XmlNodePtr xmlNodePtr #define xmlNameEqual(node, str) xmlStrEqual((node)->name, BAD_CAST (str)) #define XmlTextWriterPtr xmlTextWriterPtr |