mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Fixed that r716 (precompiled header) doesn't work on x64.
- Now uses constructor initialization list in each class. - TintedImage: Code cleanup.
This commit is contained in:
@ -34,14 +34,14 @@ extern CRainmeter* Rainmeter;
|
||||
**
|
||||
*/
|
||||
CMeterBar::CMeterBar(CMeterWindow* meterWindow) : CMeter(meterWindow),
|
||||
m_Color(Color::Green)
|
||||
m_NeedsReload(false),
|
||||
m_Color(Color::Green),
|
||||
m_Orientation(VERTICAL),
|
||||
m_Value(),
|
||||
m_Border(),
|
||||
m_Flip(false)
|
||||
{
|
||||
m_Image.SetConfigAttributes(L"BarImage", NULL);
|
||||
|
||||
m_NeedsReload = false;
|
||||
m_Value = 0.0;
|
||||
m_Border = 0;
|
||||
m_Flip = false;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user