summaryrefslogtreecommitdiff
path: root/plugins/Clist_nicer/src/clcmsgs.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-07-26 14:37:37 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-07-26 14:37:37 +0000
commit08fa43d58030952c48bcb2a7179e18579662c301 (patch)
tree7a2fe3e5301ed2dce95e9957fd1874322c86f759 /plugins/Clist_nicer/src/clcmsgs.cpp
parent54e756a851c3c4af2638fca7d0642b0ee7f36056 (diff)
same parameter for clist_nicer
git-svn-id: http://svn.miranda-ng.org/main/trunk@9947 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_nicer/src/clcmsgs.cpp')
-rw-r--r--plugins/Clist_nicer/src/clcmsgs.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/Clist_nicer/src/clcmsgs.cpp b/plugins/Clist_nicer/src/clcmsgs.cpp
index 5eace41b51..99b7bd2358 100644
--- a/plugins/Clist_nicer/src/clcmsgs.cpp
+++ b/plugins/Clist_nicer/src/clcmsgs.cpp
@@ -26,8 +26,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//processing of all the CLM_ messages incoming
-extern LRESULT ( *saveProcessExternalMessages )(HWND hwnd, struct ClcData *dat, UINT msg, WPARAM wParam, LPARAM lParam);
-
LRESULT ProcessExternalMessages(HWND hwnd, struct ClcData *dat, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
@@ -104,5 +102,5 @@ LRESULT ProcessExternalMessages(HWND hwnd, struct ClcData *dat, UINT msg, WPARAM
return dat->isMultiSelect;
}
- return saveProcessExternalMessages(hwnd, dat, msg, wParam, lParam);
+ return coreCli.pfnProcessExternalMessages(hwnd, dat, msg, wParam, lParam);
}