About dialog:

- Renamed Measures tab to Skins
- Added support for viewing variables under new Skins tab
This commit is contained in:
Birunthan Mohanathas
2012-02-20 17:27:00 +00:00
parent 3254520ced
commit 9683b8a8bf
5 changed files with 70 additions and 30 deletions

View File

@ -47,6 +47,8 @@ public:
void SetBuiltInVariable(const std::wstring& strVariable, const std::wstring& strValue) { SetVariable(m_BuiltInVariables, strVariable, strValue); }
void SetBuiltInVariable(const WCHAR* strVariable, const WCHAR* strValue) { SetVariable(m_BuiltInVariables, strVariable, strValue); }
const std::unordered_map<std::wstring, std::wstring>& GetVariables() { return m_Variables; }
void SetCurrentSection(const std::wstring& strSection) { m_CurrentSection->assign(strSection); }
void ClearCurrentSection() { m_CurrentSection->clear(); }