Changed MeasureName(N) to work dynamically

This commit is contained in:
Birunthan Mohanathas
2012-07-18 17:55:32 +03:00
parent a0a0c61e79
commit ea124f5ccd
3 changed files with 24 additions and 20 deletions

View File

@ -57,8 +57,8 @@ public:
const WCHAR* GetName() { return m_Name.c_str(); }
const std::wstring& GetOriginalName() { return m_Name; }
void Disable() { m_Disabled = true; }
void Enable() { m_Disabled = false; }
void Disable();
void Enable();
bool IsDisabled() { return m_Disabled; }
bool HasDynamicVariables() { return m_DynamicVariables; }