diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-03-24 19:30:28 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-03-24 19:30:28 +0000 |
commit | 3fed56c332215dd3a753d2fc0b31616c1b270a51 (patch) | |
tree | b3b88cfde907ac4ad412eb21c42ee214741ab42f /plugins/TooltipNotify/src/TooltipNotify.h | |
parent | 4a0f83abb71146f2f7675dac274c93abda61d25e (diff) |
TooltipNotify now uses status description from the core
git-svn-id: http://svn.miranda-ng.org/main/trunk@4176 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TooltipNotify/src/TooltipNotify.h')
-rw-r--r-- | plugins/TooltipNotify/src/TooltipNotify.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TooltipNotify/src/TooltipNotify.h b/plugins/TooltipNotify/src/TooltipNotify.h index 9e31c5e383..8cdb306203 100644 --- a/plugins/TooltipNotify/src/TooltipNotify.h +++ b/plugins/TooltipNotify/src/TooltipNotify.h @@ -128,12 +128,12 @@ private: {
return CTooltipNotify::GetObjInstance()->OptionsDlgProc(hDlg, msg, wParam, lParam);
}
- static BOOL CALLBACK ProtosDlgProcWrapper(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+ static INT_PTR CALLBACK ProtosDlgProcWrapper(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
return CTooltipNotify::GetObjInstance()->ProtosDlgProc(hDlg, msg, wParam, lParam);
}
- static BOOL CALLBACK ContactsDlgProcWrapper(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+ static INT_PTR CALLBACK ContactsDlgProcWrapper(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
return CTooltipNotify::GetObjInstance()->ContactsDlgProc(hDlg, msg, wParam, lParam);
}
|