diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-11-06 18:29:40 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-11-06 18:29:40 +0000 |
commit | abc1a67b29f305316cbb2b69a84d8cbb1a3d808a (patch) | |
tree | 418c8364d38ae60323829f6e1a1d40983f710d8a /plugins/MirandaG15/src/LCDFramework/CLCDLabel.cpp | |
parent | 7477c55210e5f65f599923c633761cec21eb26ad (diff) |
MirandaG15: Minor cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@15691 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirandaG15/src/LCDFramework/CLCDLabel.cpp')
-rw-r--r-- | plugins/MirandaG15/src/LCDFramework/CLCDLabel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirandaG15/src/LCDFramework/CLCDLabel.cpp b/plugins/MirandaG15/src/LCDFramework/CLCDLabel.cpp index 06f4076e83..38daccc7bf 100644 --- a/plugins/MirandaG15/src/LCDFramework/CLCDLabel.cpp +++ b/plugins/MirandaG15/src/LCDFramework/CLCDLabel.cpp @@ -8,10 +8,10 @@ //************************************************************************
// constructor
//************************************************************************
-CLCDLabel::CLCDLabel()
+CLCDLabel::CLCDLabel() : m_bCutOff(true), m_bWordWrap(false), m_iCutOffIndex(0),
+ m_iLineCount(0)
{
m_strText = _T("");
- m_bCutOff = true;
}
//************************************************************************
|