mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Code cleanup
This commit is contained in:
@ -67,13 +67,11 @@ public:
|
||||
static void GetScaledValue(AUTOSCALE autoScale, int decimals, double theValue, WCHAR* buffer, size_t sizeInWords);
|
||||
static void RemoveTrailingZero(WCHAR* str, int strLen);
|
||||
|
||||
std::wstring GetOnUpdateAction() { return m_OnUpdateAction; }
|
||||
|
||||
std::wstring GetOnChangeAction() { return m_OnChangeAction; }
|
||||
const std::wstring& GetOnChangeAction() { return m_OnChangeAction; }
|
||||
void SetOldValue(double value) { m_OldValue = value; }
|
||||
double GetOldValue() { return m_OldValue; }
|
||||
void SetOldStringValue(std::wstring value) { m_OldStringValue = value; }
|
||||
std::wstring GetOldStringValue() { return m_OldStringValue; }
|
||||
const std::wstring& GetOldStringValue() { return m_OldStringValue; }
|
||||
|
||||
CMeterWindow* GetMeterWindow() { return m_MeterWindow; }
|
||||
|
||||
@ -118,8 +116,6 @@ protected:
|
||||
bool m_Disabled; // Status of the measure
|
||||
bool m_Initialized;
|
||||
|
||||
std::wstring m_OnUpdateAction;
|
||||
|
||||
std::wstring m_OnChangeAction;
|
||||
double m_OldValue;
|
||||
std::wstring m_OldStringValue;
|
||||
|
Reference in New Issue
Block a user