diff options
Diffstat (limited to 'protocols/ICQCorp/src/event.cpp')
-rw-r--r-- | protocols/ICQCorp/src/event.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ICQCorp/src/event.cpp b/protocols/ICQCorp/src/event.cpp index 6499a1d37b..e73f4c9446 100644 --- a/protocols/ICQCorp/src/event.cpp +++ b/protocols/ICQCorp/src/event.cpp @@ -17,7 +17,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "corp.h"
+#include "stdafx.h"
std::vector <ICQEvent *> icqEvents;
@@ -95,7 +95,7 @@ void ICQEvent::stop() bool ICQEvent::isEvent(SOCKET hSocket, unsigned long theSequence)
{
- return socket->handleVal == hSocket && sequence == theSequence;
+ return socket->handleVal == hSocket && sequence == (int)theSequence;
}
///////////////////////////////////////////////////////////////////////////////
|