mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Renamed bool ReadFormula() to ParseFormula.
- Changed ReadConfig() in Measure/Meter to protected. - Other code tweaks and cleanups.
This commit is contained in:
@ -49,7 +49,6 @@ public:
|
||||
|
||||
void ReadConfig(CConfigParser& parser) { ReadConfig(parser, GetName()); }
|
||||
|
||||
virtual void ReadConfig(CConfigParser& parser, const WCHAR* section);
|
||||
virtual void Initialize();
|
||||
virtual bool Update() = 0;
|
||||
|
||||
@ -87,6 +86,8 @@ public:
|
||||
static CMeasure* Create(const WCHAR* measure, CMeterWindow* meterWindow, const WCHAR* name);
|
||||
|
||||
protected:
|
||||
virtual void ReadConfig(CConfigParser& parser, const WCHAR* section);
|
||||
|
||||
virtual bool PreUpdate();
|
||||
virtual bool PostUpdate();
|
||||
|
||||
|
Reference in New Issue
Block a user