diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-06 14:02:16 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-06 14:02:16 +0000 |
commit | 89b5feca3ec270bf1312b108810f95cafa3b6be1 (patch) | |
tree | eb05a74f31ab1696c49dd91dcb0236543391c116 /protocols/AimOscar | |
parent | 5e64b724fd1b4b889f78c29d1583c886d4fbd818 (diff) |
cosmetic fix for the parameter name
git-svn-id: http://svn.miranda-ng.org/main/trunk@1538 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/AimOscar')
-rw-r--r-- | protocols/AimOscar/proto.cpp | 4 | ||||
-rw-r--r-- | protocols/AimOscar/proto.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/protocols/AimOscar/proto.cpp b/protocols/AimOscar/proto.cpp index b79f95927c..fa8d40c564 100644 --- a/protocols/AimOscar/proto.cpp +++ b/protocols/AimOscar/proto.cpp @@ -158,7 +158,7 @@ HANDLE __cdecl CAimProto::AddToListByEvent(int flags, int iContact, HANDLE hDbEv ////////////////////////////////////////////////////////////////////////////////////////
// AuthAllow - processes the successful authorization
-int CAimProto::Authorize(HANDLE hContact)
+int CAimProto::Authorize(HANDLE hDbEvent)
{
return 0;
}
@@ -166,7 +166,7 @@ int CAimProto::Authorize(HANDLE hContact) ////////////////////////////////////////////////////////////////////////////////////////
// AuthDeny - handles the unsuccessful authorization
-int CAimProto::AuthDeny(HANDLE hContact, const TCHAR* szReason)
+int CAimProto::AuthDeny(HANDLE hDbEvent, const TCHAR* szReason)
{
return 0;
}
diff --git a/protocols/AimOscar/proto.h b/protocols/AimOscar/proto.h index 5028ad868f..bb4dc3c601 100644 --- a/protocols/AimOscar/proto.h +++ b/protocols/AimOscar/proto.h @@ -39,8 +39,8 @@ struct CAimProto : public PROTO_INTERFACE, public MZeroedObject virtual HANDLE __cdecl AddToList( int flags, PROTOSEARCHRESULT* psr );
virtual HANDLE __cdecl AddToListByEvent( int flags, int iContact, HANDLE hDbEvent );
- virtual int __cdecl Authorize( HANDLE hContact );
- virtual int __cdecl AuthDeny( HANDLE hContact, const TCHAR* szReason );
+ virtual int __cdecl Authorize( HANDLE hDbEvent );
+ virtual int __cdecl AuthDeny( HANDLE hDbEvent, const TCHAR* szReason );
virtual int __cdecl AuthRecv( HANDLE hContact, PROTORECVEVENT* );
virtual int __cdecl AuthRequest( HANDLE hContact, const TCHAR* szMessage );
|