diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-07-31 18:12:58 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-07-31 18:12:58 +0000 |
commit | eadd77936fd5405d23ab71722183e6f3f2de8208 (patch) | |
tree | fda0e2beb3eb92d6503a4fb6b87c179bcc79b7b8 /plugins/AddContactPlus/src/addcontact.cpp | |
parent | bb6e97f6ccc6676d6cdb8e60a46856c84a169a44 (diff) |
AddContactPlus: Open only one window at a time
git-svn-id: http://svn.miranda-ng.org/main/trunk@1287 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AddContactPlus/src/addcontact.cpp')
-rw-r--r-- | plugins/AddContactPlus/src/addcontact.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/AddContactPlus/src/addcontact.cpp b/plugins/AddContactPlus/src/addcontact.cpp index a2feb5c449..d77ba3a07d 100644 --- a/plugins/AddContactPlus/src/addcontact.cpp +++ b/plugins/AddContactPlus/src/addcontact.cpp @@ -409,6 +409,7 @@ INT_PTR CALLBACK AddContactDlgProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lp }
case WM_DESTROY:
+ hAddDlg = NULL;
CallService(MS_SKIN2_RELEASEICONBIG, (WPARAM)SendMessage(hdlg, WM_SETICON, ICON_BIG, (LPARAM)NULL), 0);
CallService(MS_SKIN2_RELEASEICON, (WPARAM)SendMessage(hdlg, WM_SETICON, ICON_SMALL, (LPARAM)NULL), 0);
ImageList_Destroy((HIMAGELIST)SendDlgItemMessage(hdlg, IDC_PROTO, CBEM_GETIMAGELIST, 0, 0));
|