diff options
author | wishmaster51@gmail.com <wishmaster51@gmail.com@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2012-04-21 10:05:59 +0000 |
---|---|---|
committer | wishmaster51@gmail.com <wishmaster51@gmail.com@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2012-04-21 10:05:59 +0000 |
commit | e5fcb23f1da0228d227e4397f622fdb38d22bfa3 (patch) | |
tree | 1351c86887697b0f967e3823ec41a7045318f174 /Plugins/avatarhistory/popup.cpp | |
parent | 0984583475f7b6eb332542060cdf451f3aea8c11 (diff) |
-fixed notifications of duplicate avatars
(thanks to xaos for testing and reporting it)
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@246 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/avatarhistory/popup.cpp')
-rw-r--r-- | Plugins/avatarhistory/popup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Plugins/avatarhistory/popup.cpp b/Plugins/avatarhistory/popup.cpp index f67d07f..cdc21af 100644 --- a/Plugins/avatarhistory/popup.cpp +++ b/Plugins/avatarhistory/popup.cpp @@ -65,9 +65,9 @@ void ShowErrPopup(const TCHAR *description, const TCHAR *title) }
-void ShowTestPopup(const TCHAR *title, const TCHAR *description, const Options *op)
+void ShowTestPopup(HANDLE hContact,const TCHAR *title, const TCHAR *description, const Options *op)
{
- ShowPopupEx(NULL, title, description, NULL, POPUP_TYPE_TEST, op);
+ ShowPopupEx(hContact, title, description, NULL, POPUP_TYPE_TEST, op);
}
|