mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-06 20:45:54 +01:00
fix to compile post API change.
This commit is contained in:
parent
c4df31892e
commit
9598ea3585
1 changed files with 2 additions and 2 deletions
|
@ -921,7 +921,7 @@ handle_resend( GtkWidget* XP_UNUSED(widget), GtkAppGlobals* globals )
|
||||||
{
|
{
|
||||||
CommsCtxt* comms = globals->cGlobals.game.comms;
|
CommsCtxt* comms = globals->cGlobals.game.comms;
|
||||||
if ( comms != NULL ) {
|
if ( comms != NULL ) {
|
||||||
comms_resendAll( comms );
|
comms_resendAll( comms, XP_TRUE );
|
||||||
}
|
}
|
||||||
} /* handle_resend */
|
} /* handle_resend */
|
||||||
|
|
||||||
|
@ -2199,7 +2199,7 @@ gtk_socket_changed( void* closure, int oldSock, int newSock, void** storage )
|
||||||
/* A hack for the bluetooth case. */
|
/* A hack for the bluetooth case. */
|
||||||
CommsCtxt* comms = globals->cGlobals.game.comms;
|
CommsCtxt* comms = globals->cGlobals.game.comms;
|
||||||
if ( (comms != NULL) && (comms_getConType(comms) == COMMS_CONN_BT) ) {
|
if ( (comms != NULL) && (comms_getConType(comms) == COMMS_CONN_BT) ) {
|
||||||
comms_resendAll( comms );
|
comms_resendAll( comms, XP_FALSE );
|
||||||
}
|
}
|
||||||
LOG_RETURN_VOID();
|
LOG_RETURN_VOID();
|
||||||
} /* gtk_socket_changed */
|
} /* gtk_socket_changed */
|
||||||
|
|
Loading…
Add table
Reference in a new issue