Fix building issues.

This commit is contained in:
BenDol 2014-04-01 18:09:25 +13:00
parent 4b24c78f0f
commit 37f9d3e200
2 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@
Config::Config()
{
m_confsDoc = OTMLDocument::create();
m_fileName = "";
}
bool Config::load(const std::string& file)

View File

@ -58,7 +58,7 @@ public:
ConfigPtr asConfig() { return static_self_cast<Config>(); }
private:
std::string m_fileName = "";
std::string m_fileName;
OTMLDocumentPtr m_confsDoc;
};