diff options
Diffstat (limited to 'plugins/HistoryStats/src/canvas.cpp')
-rw-r--r-- | plugins/HistoryStats/src/canvas.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/plugins/HistoryStats/src/canvas.cpp b/plugins/HistoryStats/src/canvas.cpp index 881fbc254f..be0cd3978c 100644 --- a/plugins/HistoryStats/src/canvas.cpp +++ b/plugins/HistoryStats/src/canvas.cpp @@ -29,14 +29,10 @@ void Canvas::updateTrans(BYTE* pData) }
}
-Canvas::Canvas(int nWidth, int nHeight) :
- m_nChannels(4),
- m_nWidth(nWidth),
- m_nHeight(nHeight),
- m_nLineLength((m_nChannels * m_nWidth + 3) & ~0x3),
- m_bTransColor(false),
- m_TransColor(0),
- m_pBMIH(NULL)
+Canvas::Canvas(int nWidth, int nHeight) : m_nChannels(4), m_nWidth(nWidth),
+ m_nHeight(nHeight), m_nLineLength((m_nChannels * m_nWidth + 3) & ~0x3),
+ m_bTransColor(false), m_TransColor(0), m_pBMIH(NULL), m_hDC(0),
+ m_hBmp(0), m_hOldBmp(0)
{}
Canvas::~Canvas()
|