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:
@ -30,13 +30,13 @@ using namespace Gdiplus;
|
||||
**
|
||||
*/
|
||||
CMeterLine::CMeterLine(CMeterWindow* meterWindow) : CMeter(meterWindow),
|
||||
m_HorizontalColor(Color::Black)
|
||||
m_Autoscale(false),
|
||||
m_HorizontalLines(false),
|
||||
m_Flip(false),
|
||||
m_LineWidth(1.0),
|
||||
m_HorizontalColor(Color::Black),
|
||||
m_CurrentPos()
|
||||
{
|
||||
m_Autoscale = false;
|
||||
m_HorizontalLines = false;
|
||||
m_CurrentPos = 0;
|
||||
m_Flip = false;
|
||||
m_LineWidth = 1.0;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user