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/Omegle | |
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/Omegle')
-rw-r--r-- | protocols/Omegle/stubs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Omegle/stubs.cpp b/protocols/Omegle/stubs.cpp index 24354c49bc..825c60ac8c 100644 --- a/protocols/Omegle/stubs.cpp +++ b/protocols/Omegle/stubs.cpp @@ -32,12 +32,12 @@ HANDLE OmegleProto::AddToListByEvent(int flags,int iContact,HANDLE hDbEvent) return 0;
};
-int OmegleProto::Authorize(HANDLE hContact)
+int OmegleProto::Authorize(HANDLE hDbEvent)
{
return 0;
}
-int OmegleProto::AuthDeny(HANDLE hContact,const PROTOCHAR *reason)
+int OmegleProto::AuthDeny(HANDLE hDbEvent,const PROTOCHAR *reason)
{
return 0;
}
|