diff options
author | Goraf <goraf@miranda-ng.org> | 2014-12-20 11:38:01 +0000 |
---|---|---|
committer | Goraf <goraf@miranda-ng.org> | 2014-12-20 11:38:01 +0000 |
commit | c85f29701349a22dadca357c770296b7e8475db1 (patch) | |
tree | f7122acf5722c8e4a85df623e2d75da13333554f /plugins/HistoryStats/src/optionsctrlimpl.cpp | |
parent | c732744ba9a96510a9dca4175392813ffc9b8a63 (diff) |
HistoryStats: missing break
git-svn-id: http://svn.miranda-ng.org/main/trunk@11543 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src/optionsctrlimpl.cpp')
-rw-r--r-- | plugins/HistoryStats/src/optionsctrlimpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/HistoryStats/src/optionsctrlimpl.cpp b/plugins/HistoryStats/src/optionsctrlimpl.cpp index 748364bec8..c128f4062d 100644 --- a/plugins/HistoryStats/src/optionsctrlimpl.cpp +++ b/plugins/HistoryStats/src/optionsctrlimpl.cpp @@ -267,6 +267,7 @@ LRESULT CALLBACK OptionsCtrlImpl::staticTreeProc(HWND hTree, UINT msg, WPARAM wP switch (msg) {
case WM_LBUTTONDOWN:
pCtrl->onTreeWMLButtonDown(wParam, MAKEPOINTS(lParam));
+ break;
case WM_CHAR:
pCtrl->onTreeWMChar(wParam, LOWORD(lParam), HIWORD(lParam));
|