diff options
Diffstat (limited to 'protocols/SkypeWeb/src/skype_options.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_options.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_options.h b/protocols/SkypeWeb/src/skype_options.h index 4b5c785337..c593dc1856 100644 --- a/protocols/SkypeWeb/src/skype_options.h +++ b/protocols/SkypeWeb/src/skype_options.h @@ -28,7 +28,7 @@ private: CCtrlCheck m_localtime;
protected:
- CSkypeOptionsMain(CSkypeProto *proto, int idDialog, HWND hwndParent = NULL);
+ CSkypeOptionsMain(CSkypeProto *proto, int idDialog);
void OnInitDialog();
void OnApply();
@@ -36,7 +36,8 @@ protected: public:
static CDlgBase *CreateAccountManagerPage(void *param, HWND owner)
{
- CSkypeOptionsMain *page = new CSkypeOptionsMain((CSkypeProto*)param, IDD_ACCOUNT_MANAGER, owner);
+ CSkypeOptionsMain *page = new CSkypeOptionsMain((CSkypeProto*)param, IDD_ACCOUNT_MANAGER);
+ page->SetParent(owner);
page->Show();
return page;
}
|