mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
catch up with interface change
This commit is contained in:
parent
576e2ec447
commit
343e97a9ea
2 changed files with 5 additions and 3 deletions
|
@ -160,7 +160,8 @@ class CXWordsAppView : public CCoeControl
|
|||
static void sym_util_listenPortChange( XW_UtilCtxt* uc,
|
||||
XP_U16 listenPort );
|
||||
static void sym_util_addrChange( XW_UtilCtxt* uc,
|
||||
const CommsAddrRec* aAddr );
|
||||
const CommsAddrRec* aOld,
|
||||
const CommsAddrRec* aNew );
|
||||
#endif
|
||||
|
||||
#ifdef XWFEATURE_STANDALONE_ONLY
|
||||
|
|
|
@ -508,11 +508,12 @@ CXWordsAppView::sym_util_listenPortChange( XW_UtilCtxt* uc, XP_U16 aPort )
|
|||
|
||||
/*static*/void
|
||||
CXWordsAppView::sym_util_addrChange( XW_UtilCtxt* uc,
|
||||
const CommsAddrRec* aAddr )
|
||||
const CommsAddrRec* aOld,
|
||||
const CommsAddrRec* aNew )
|
||||
{
|
||||
CXWordsAppView* self = (CXWordsAppView*)uc->closure;
|
||||
XP_LOGF( "util_addrChange: calling connect" );
|
||||
self->iSendSock->ConnectL( aAddr );
|
||||
self->iSendSock->ConnectL( aNew );
|
||||
(void)self->iSendSock->Listen();
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue