Minor fixes to f4429ad

This commit is contained in:
Birunthan Mohanathas 2013-05-29 22:08:51 +03:00
parent f4429ad8cc
commit ca0f2e608f
2 changed files with 5 additions and 5 deletions

View File

@ -29,10 +29,10 @@ class CLogger
public:
enum class Level
{
Error,
Warning,
Notice,
Debug
Error = 1,
Warning = 2,
Notice = 3,
Debug = 4
};
struct Entry

View File

@ -215,7 +215,7 @@ public:
static std::vector<std::wstring> ParseString(LPCTSTR str, CConfigParser* parser = NULL);
static std::wstring ExtractPath(const std::wstring& strFilePath);
static void ExpandEnvironmentVariables(std::wstring& strPath);
friend class CDialogManage;
private: