diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-17 16:27:22 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-17 16:27:22 +0300 |
commit | db6b5a4bfa73b7fa4bc1a99f14d569b6f45c8275 (patch) | |
tree | 094d9e76c156b1d83d3475e9bbb9eb6ed2ac063c /protocols/ICQCorp/src/services.cpp | |
parent | 1af8f445ac9a6d9635eec192fb47ad2f67e4ed95 (diff) |
unified project for ICQCorp
Diffstat (limited to 'protocols/ICQCorp/src/services.cpp')
-rw-r--r-- | protocols/ICQCorp/src/services.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ICQCorp/src/services.cpp b/protocols/ICQCorp/src/services.cpp index 638c7e2e33..baa649f307 100644 --- a/protocols/ICQCorp/src/services.cpp +++ b/protocols/ICQCorp/src/services.cpp @@ -17,7 +17,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "corp.h"
+#include "stdafx.h"
///////////////////////////////////////////////////////////////////////////////
@@ -148,7 +148,7 @@ static INT_PTR icqAddToList(WPARAM wParam, LPARAM lParam) T("[ ] add user to list\n");
ICQSEARCHRESULT *isr = (ICQSEARCHRESULT *)lParam;
- if (isr->hdr.cbSize != sizeof(ICQSEARCHRESULT) || isr->uin == icq.uin)
+ if (isr->hdr.cbSize != sizeof(ICQSEARCHRESULT) || isr->uin == icq.dwUIN)
return NULL;
bool persistent = (wParam & PALF_TEMPORARY) == 0;
|