diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-19 16:16:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-19 16:16:47 +0000 |
commit | c7bf418d56f53a59944f5ec452f3cd42aee57fad (patch) | |
tree | 45792ba4c25e3e7eb350de5d954621fe28c74684 /plugins | |
parent | ffcd26372adbfd40da50b4ce9dea248baca2fee0 (diff) |
missed subclassing code in tabSRMM
git-svn-id: http://svn.miranda-ng.org/main/trunk@5041 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TabSRMM/src/infopanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/infopanel.cpp b/plugins/TabSRMM/src/infopanel.cpp index 5ec1268110..52ff49db97 100644 --- a/plugins/TabSRMM/src/infopanel.cpp +++ b/plugins/TabSRMM/src/infopanel.cpp @@ -1090,7 +1090,7 @@ LRESULT CALLBACK CInfoPanel::avatarParentSubclass(HWND hwnd, UINT msg, WPARAM wP return TRUE;
}
- return DefWindowProc(hwnd, msg, wParam, lParam);
+ return mir_callNextSubclass(hwnd, CInfoPanel::avatarParentSubclass, msg, wParam, lParam);
}
/**
|