diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-06 20:44:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-06 20:44:07 +0300 |
commit | da9aa1870502d88752c5482e3eb2d2548dd64984 (patch) | |
tree | a5653a11a277dd1a210005aefcbb6dcb3970dac4 /plugins/Clist_modern/src | |
parent | adc215dceb172b5eec920d719e1601c293e447bd (diff) |
CLIST_INTERFACE::pfnDoSelectionDefaultAction => Clist_DoSelectionDefaultAction
Diffstat (limited to 'plugins/Clist_modern/src')
-rw-r--r-- | plugins/Clist_modern/src/modern_clc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clc.cpp b/plugins/Clist_modern/src/modern_clc.cpp index 25afd153fe..39d920265c 100644 --- a/plugins/Clist_modern/src/modern_clc.cpp +++ b/plugins/Clist_modern/src/modern_clc.cpp @@ -447,7 +447,7 @@ static LRESULT clcOnKeyDown(ClcData *dat, HWND hwnd, UINT, WPARAM wParam, LPARAM case VK_LEFT: changeGroupExpand = 1; break;
case VK_RIGHT: changeGroupExpand = 2; break;
case VK_RETURN:
- pcli->pfnDoSelectionDefaultAction(hwnd, dat);
+ Clist_DoSelectionDefaultAction(hwnd, dat);
SetCapture(hwnd);
return 0;
|