Cleaned unused values from CFontConfig

1008-fix
tomangelo2 2017-10-28 22:24:11 +02:00
parent ff97df74c6
commit 0179e4c786
2 changed files with 0 additions and 5 deletions

View File

@ -39,8 +39,6 @@
namespace bp = boost::property_tree;
CFontConfig::CFontConfig()
: m_needsSave(false)
, m_loaded(false)
{
}
@ -62,7 +60,6 @@ bool CFontConfig::Init()
{
bp::ini_parser::read_ini(*stream, m_propertyTree);
GetLogger()->Debug("Fonts config file loaded correctly. \n");
m_loaded = true;
}
else
{

View File

@ -95,6 +95,4 @@ public:
private:
boost::property_tree::ptree m_propertyTree;
bool m_needsSave;
bool m_loaded;
};