diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-25 13:40:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-25 13:40:12 +0000 |
commit | e4b8e9d9704a986c71565ef723cc8de208d97740 (patch) | |
tree | bfc6ec6cad97649f277a2d3829bbea2ebab26055 /protocols/IRCG | |
parent | 3be1f8e5705a997d94a12a5165a32cfcb867424f (diff) |
PROTO<>::SendAwayMsg / PSS_AWAYMSG considered unused
git-svn-id: http://svn.miranda-ng.org/main/trunk@6229 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG')
-rw-r--r-- | protocols/IRCG/src/irc.h | 1 | ||||
-rw-r--r-- | protocols/IRCG/src/ircproto.cpp | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/protocols/IRCG/src/irc.h b/protocols/IRCG/src/irc.h index 3be89ed142..510375eee8 100644 --- a/protocols/IRCG/src/irc.h +++ b/protocols/IRCG/src/irc.h @@ -253,7 +253,6 @@ struct CIrcProto : public PROTO<CIrcProto> virtual HANDLE __cdecl GetAwayMsg( HANDLE hContact );
virtual int __cdecl RecvAwayMsg( HANDLE hContact, int mode, PROTORECVEVENT* evt );
- virtual int __cdecl SendAwayMsg( HANDLE hContact, HANDLE hProcess, const char* msg );
virtual int __cdecl SetAwayMsg( int m_iStatus, const TCHAR* msg );
virtual int __cdecl UserIsTyping( HANDLE hContact, int type );
diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp index 6ee3d0a825..0592354d3a 100644 --- a/protocols/IRCG/src/ircproto.cpp +++ b/protocols/IRCG/src/ircproto.cpp @@ -982,14 +982,6 @@ int __cdecl CIrcProto::RecvAwayMsg( HANDLE, int, PROTORECVEVENT* ) }
////////////////////////////////////////////////////////////////////////////////////////
-// PSS_AWAYMSG
-
-int __cdecl CIrcProto::SendAwayMsg( HANDLE, HANDLE, const char* )
-{
- return 1;
-}
-
-////////////////////////////////////////////////////////////////////////////////////////
// SetAwayMsg - sets the away status message
int __cdecl CIrcProto::SetAwayMsg( int status, const TCHAR* msg )
|