From 343e97a9eab76a81bb4363a2444197a03ddf20a5 Mon Sep 17 00:00:00 2001 From: ehouse Date: Thu, 21 Apr 2005 03:43:03 +0000 Subject: [PATCH] catch up with interface change --- xwords4/symbian/inc/xwappview.h | 3 ++- xwords4/symbian/src/xwappview.cpp | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/xwords4/symbian/inc/xwappview.h b/xwords4/symbian/inc/xwappview.h index 9be26c3ce..835c4571b 100644 --- a/xwords4/symbian/inc/xwappview.h +++ b/xwords4/symbian/inc/xwappview.h @@ -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 diff --git a/xwords4/symbian/src/xwappview.cpp b/xwords4/symbian/src/xwappview.cpp index 089104542..33e931bd8 100644 --- a/xwords4/symbian/src/xwappview.cpp +++ b/xwords4/symbian/src/xwappview.cpp @@ -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