diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-17 14:45:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-17 14:45:41 +0000 |
commit | a30b2689d14a4026af2f3ebd01764bf896aaeb59 (patch) | |
tree | 0c4d5badc8b38f04ecd2281277e6107fa2dce3d6 /protocols/IRCG | |
parent | dbe6561e59a71811aa3975c792a3af86577c5cfa (diff) |
fix for the file transfer events
git-svn-id: http://svn.miranda-ng.org/main/trunk@1590 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG')
-rw-r--r-- | protocols/IRCG/commandmonitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/commandmonitor.cpp b/protocols/IRCG/commandmonitor.cpp index 5ec96c61e6..842db74ea1 100644 --- a/protocols/IRCG/commandmonitor.cpp +++ b/protocols/IRCG/commandmonitor.cpp @@ -1185,7 +1185,7 @@ bool CIrcProto::IsCTCP( const CIrcMessage* pmsg ) ccs.szProtoService = PSR_FILE;
ccs.hContact = hContact;
ccs.lParam = (LPARAM) & pre;
- CallService( MS_PROTO_CHAINRECV, 0, (LPARAM)&ccs );
+ CallService(MS_PROTO_CHAINRECV, 0, (LPARAM)&ccs);
} } }
// end type == "send"
}
|