summaryrefslogtreecommitdiff
path: root/plugins/HistoryStats/src/optionsctrlimpl.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-04-24 21:11:51 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-04-24 21:11:51 +0000
commit6828926a4d4eefef4632e97646f639c8ec24d0ab (patch)
tree01747ba326526e69b4d64df3416acfe0ca6d9446 /plugins/HistoryStats/src/optionsctrlimpl.cpp
parentd41cb4808c648d458be7615d6a72003e3614538d (diff)
HistoryStats project conversion
git-svn-id: http://svn.miranda-ng.org/main/trunk@13110 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src/optionsctrlimpl.cpp')
-rw-r--r--plugins/HistoryStats/src/optionsctrlimpl.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/HistoryStats/src/optionsctrlimpl.cpp b/plugins/HistoryStats/src/optionsctrlimpl.cpp
index c128f4062d..71929f166f 100644
--- a/plugins/HistoryStats/src/optionsctrlimpl.cpp
+++ b/plugins/HistoryStats/src/optionsctrlimpl.cpp
@@ -1,4 +1,4 @@
-#include "_globals.h"
+#include "stdafx.h"
#include "optionsctrlimpl.h"
#include "main.h"
@@ -350,7 +350,7 @@ void OptionsCtrlImpl::staticFreeStateImages()
}
}
-void OptionsCtrlImpl::staticUpdateStateImages(LPARAM lParam)
+void OptionsCtrlImpl::staticUpdateStateImages(LPARAM)
{
static const IconLib::IconIndex StateIcons[18] = {
IconLib::iiTreeCheck1,
@@ -735,7 +735,7 @@ void OptionsCtrlImpl::onCPNColorChanged()
}
}
-void OptionsCtrlImpl::onTreeWMLButtonDown(UINT nFlags, POINTS point)
+void OptionsCtrlImpl::onTreeWMLButtonDown(UINT, POINTS point)
{
TVHITTESTINFO hti = { { point.x, point.y } };
@@ -743,7 +743,7 @@ void OptionsCtrlImpl::onTreeWMLButtonDown(UINT nFlags, POINTS point)
getItem(hti.hItem)->onToggle();
}
-void OptionsCtrlImpl::onTreeWMChar(UINT nChar, UINT nRepCnt, UINT nFlags)
+void OptionsCtrlImpl::onTreeWMChar(UINT nChar, UINT, UINT)
{
if (nChar == VK_SPACE) {
HTREEITEM hItem = TreeView_GetSelection(m_hTree);
@@ -752,7 +752,7 @@ void OptionsCtrlImpl::onTreeWMChar(UINT nChar, UINT nRepCnt, UINT nFlags)
}
}
-void OptionsCtrlImpl::onTreeWMKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
+void OptionsCtrlImpl::onTreeWMKeyDown(UINT nChar, UINT, UINT)
{
if (nChar == VK_RIGHT) {
HTREEITEM hItem = TreeView_GetSelection(m_hTree);