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/CLCDInput.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/CLCDInput.cpp')
-rw-r--r-- | plugins/MirandaG15/src/LCDFramework/CLCDInput.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/plugins/MirandaG15/src/LCDFramework/CLCDInput.cpp b/plugins/MirandaG15/src/LCDFramework/CLCDInput.cpp index 0239c6b75f..547216ac09 100644 --- a/plugins/MirandaG15/src/LCDFramework/CLCDInput.cpp +++ b/plugins/MirandaG15/src/LCDFramework/CLCDInput.cpp @@ -5,19 +5,12 @@ //************************************************************************
// CLCDInput::CLCDInput
//************************************************************************
-CLCDInput::CLCDInput()
+CLCDInput::CLCDInput() : m_hKBHook(0), m_bShowSymbols(true), m_bShowMarker(false),
+ m_lInputTime(0), m_iLinePosition(0), m_iLineCount(0), m_iBreakKeys(KEYS_RETURN),
+ m_lBlinkTimer(0), m_pScrollbar(NULL)
{
- m_lInputTime = 0;
- m_iLinePosition = 0;
memset(&m_Marker, 0, sizeof(m_Marker));
- m_pScrollbar = NULL;
- m_bShowSymbols = true;
- m_iBreakKeys = KEYS_RETURN;
- m_bShowMarker = false;
- m_lBlinkTimer = 0;
-
- m_iLineCount = 0;
// SetScrollbarAlignment(TOP);
Reset();
}
|