diff --git a/Library/Logger.h b/Library/Logger.h index e7e0dc91..ff277224 100644 --- a/Library/Logger.h +++ b/Library/Logger.h @@ -29,10 +29,10 @@ class CLogger public: enum class Level { - Error, - Warning, - Notice, - Debug + Error = 1, + Warning = 2, + Notice = 3, + Debug = 4 }; struct Entry diff --git a/Library/Rainmeter.h b/Library/Rainmeter.h index 316e8e61..e041ebef 100644 --- a/Library/Rainmeter.h +++ b/Library/Rainmeter.h @@ -215,7 +215,7 @@ public: static std::vector ParseString(LPCTSTR str, CConfigParser* parser = NULL); static std::wstring ExtractPath(const std::wstring& strFilePath); static void ExpandEnvironmentVariables(std::wstring& strPath); - + friend class CDialogManage; private: