diff options
Diffstat (limited to 'protocols/SkypeWeb/src/skype_options.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/SkypeWeb/src/skype_options.cpp b/protocols/SkypeWeb/src/skype_options.cpp index 07f15c215a..358440dd1f 100644 --- a/protocols/SkypeWeb/src/skype_options.cpp +++ b/protocols/SkypeWeb/src/skype_options.cpp @@ -82,12 +82,12 @@ public: /////////////////////////////////////////////////////////////////////////////////
-INT_PTR CSkypeProto::OnAccountManagerInit(WPARAM, LPARAM lParam)
+MWindow CSkypeProto::OnCreateAccMgrUI(MWindow hwndParent)
{
auto *pDlg = new CSkypeOptionsMain(this, IDD_ACCOUNT_MANAGER);
- pDlg->SetParent(HWND(lParam));
+ pDlg->SetParent(hwndParent);
pDlg->Show();
- return (INT_PTR)pDlg->GetHwnd();
+ return pDlg->GetHwnd();
}
int CSkypeProto::OnOptionsInit(WPARAM wParam, LPARAM)
|