From 04ea225a48f0fe836361882cb0f78e7b99ee582f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 24 Feb 2014 12:47:23 +0000 Subject: more useless conversions removed git-svn-id: http://svn.miranda-ng.org/main/trunk@8254 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/core/stdchat/src/window.cpp | 2 +- src/core/stdmsg/src/msgdialog.cpp | 2 +- src/modules/chat/clist.cpp | 2 +- src/modules/clist/clistmenus.cpp | 2 +- src/modules/clist/genmenu.cpp | 2 +- src/modules/protocols/protoint.cpp | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/core/stdchat/src/window.cpp b/src/core/stdchat/src/window.cpp index b07d8ffcc7..7878af85e4 100644 --- a/src/core/stdchat/src/window.cpp +++ b/src/core/stdchat/src/window.cpp @@ -1852,7 +1852,7 @@ END_REMOVETAB: if (CallService(MS_CLIST_GETEVENT, (WPARAM)si->hContact, 0)) CallService(MS_CLIST_REMOVEEVENT, (WPARAM)si->hContact, (LPARAM)GC_FAKE_EVENT); si->wState &= ~STATE_TALK; - db_set_w(si->hContact, si->pszModule, "ApparentMode", (LPARAM)0); + db_set_w(si->hContact, si->pszModule, "ApparentMode", 0); SendMessage(hwndDlg, GC_CLOSEWINDOW, 0, 0); return TRUE; diff --git a/src/core/stdmsg/src/msgdialog.cpp b/src/core/stdmsg/src/msgdialog.cpp index 1f2141cb42..67f5f02a8e 100644 --- a/src/core/stdmsg/src/msgdialog.cpp +++ b/src/core/stdmsg/src/msgdialog.cpp @@ -753,7 +753,7 @@ INT_PTR CALLBACK DlgProcMessage(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lP SendDlgItemMessage(hwndDlg, IDC_LOG, EM_SETOLECALLBACK, 0, (LPARAM)& reOleCallback); SendDlgItemMessage(hwndDlg, IDC_LOG, EM_SETEVENTMASK, 0, ENM_MOUSEEVENTS | ENM_LINK | ENM_SCROLL); /* duh, how come we didnt use this from the start? */ - SendDlgItemMessage(hwndDlg, IDC_LOG, EM_AUTOURLDETECT, (WPARAM)TRUE, 0); + SendDlgItemMessage(hwndDlg, IDC_LOG, EM_AUTOURLDETECT, TRUE, 0); if (dat->hContact && dat->szProto) { int nMax; nMax = CallProtoService(dat->szProto, PS_GETCAPS, PFLAG_MAXLENOFMESSAGE, (LPARAM)dat->hContact); diff --git a/src/modules/chat/clist.cpp b/src/modules/chat/clist.cpp index d548d8db2c..3709b94610 100644 --- a/src/modules/chat/clist.cpp +++ b/src/modules/chat/clist.cpp @@ -75,7 +75,7 @@ BOOL SetOffline(MCONTACT hContact, BOOL bHide) { if (hContact) { char *szProto = GetContactProto(hContact); - db_set_w(hContact, szProto, "ApparentMode", (LPARAM)0); + db_set_w(hContact, szProto, "ApparentMode", 0); db_set_w(hContact, szProto, "Status", ID_STATUS_OFFLINE); return TRUE; } diff --git a/src/modules/clist/clistmenus.cpp b/src/modules/clist/clistmenus.cpp index 56b6cd7720..f1cfadae46 100644 --- a/src/modules/clist/clistmenus.cpp +++ b/src/modules/clist/clistmenus.cpp @@ -346,7 +346,7 @@ INT_PTR ContactMenuExecService(WPARAM wParam, LPARAM lParam) { if (wParam != 0) { lpContactMenuExecParam cmep = (lpContactMenuExecParam)wParam; - //call with wParam = (WPARAM)(HANDLE)hContact, lparam = popupposition + //call with wParam = (MCONTACT)hContact, lparam = popupposition CallService(cmep->szServiceName, lParam, cmep->param); } return 0; diff --git a/src/modules/clist/genmenu.cpp b/src/modules/clist/genmenu.cpp index cad7cb1950..0014545c27 100644 --- a/src/modules/clist/genmenu.cpp +++ b/src/modules/clist/genmenu.cpp @@ -1104,7 +1104,7 @@ int TryProcessDoubleClick(MCONTACT hContact) PMO_IntMenuItem pimi = (PMO_IntMenuItem)MO_GetDefaultMenuItem((WPARAM)g_menus[ iMenuID ]->m_items.first, 0); if (pimi != NULL) { - MO_ProcessCommand(pimi, (LPARAM)hContact); + MO_ProcessCommand(pimi, hContact); return 0; } } diff --git a/src/modules/protocols/protoint.cpp b/src/modules/protocols/protoint.cpp index 70fccaa18c..d74ec1a5c4 100644 --- a/src/modules/protocols/protoint.cpp +++ b/src/modules/protocols/protoint.cpp @@ -122,7 +122,7 @@ struct DEFAULT_PROTO_INTERFACE : public PROTO_INTERFACE DWORD_PTR __cdecl GetCaps(int type, MCONTACT hContact) { - return (DWORD_PTR)ProtoCallService(m_szModuleName, PS_GETCAPS, type, (LPARAM)hContact); + return (DWORD_PTR)ProtoCallService(m_szModuleName, PS_GETCAPS, type, hContact); } HICON __cdecl GetIcon(int iconIndex) -- cgit v1.2.3