diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-11-06 20:25:24 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-11-06 20:25:24 +0000 |
commit | 65f7574ffc302e2749a922ada3aa2ea9513dd02e (patch) | |
tree | 8c606d0a048e52232e51e2f1798a7bc3b8ec4ca5 /plugins/HistoryStats/src/column_timeline.cpp | |
parent | abc1a67b29f305316cbb2b69a84d8cbb1a3d808a (diff) |
HistoryStats: Minor cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@15692 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src/column_timeline.cpp')
-rw-r--r-- | plugins/HistoryStats/src/column_timeline.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/HistoryStats/src/column_timeline.cpp b/plugins/HistoryStats/src/column_timeline.cpp index f0e8a166d6..ad59733b61 100644 --- a/plugins/HistoryStats/src/column_timeline.cpp +++ b/plugins/HistoryStats/src/column_timeline.cpp @@ -5,9 +5,9 @@ * ColTimeline
*/
-ColTimeline::ColTimeline()
- : m_nSource(0), m_nSourceType(2), m_nIgnoreOld(0), m_bDetail(true), m_nDays(7),
- m_hSource(NULL), m_hIgnoreOld(NULL), m_hDetail(NULL), m_hDays(NULL)
+ColTimeline::ColTimeline() : m_nSource(0), m_nSourceType(2), m_nIgnoreOld(0), m_bDetail(true),
+ m_nDays(7), m_hSource(NULL), m_hIgnoreOld(NULL), m_hDetail(NULL), m_hDays(NULL),
+ m_nTimelineWidth(0), m_nFirstDay(0), m_nLastDay(0)
{
}
|