mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
turn off BT; remove rc designation so can ship
This commit is contained in:
parent
1e1f14af29
commit
d49a49570b
4 changed files with 4 additions and 15 deletions
|
@ -116,7 +116,7 @@ MYDEFS_COMMON += -DXWFEATURE_SEARCHLIMIT
|
|||
# MYDEFS_COMMON += -DXWFEATURE_RELAY
|
||||
|
||||
# turn on bluetooth comms option for 68K and ARM -- which won't work yet
|
||||
BLUETOOTH = -DXWFEATURE_BLUETOOTH
|
||||
# BLUETOOTH = -DXWFEATURE_BLUETOOTH
|
||||
MYDEFS_COMMON += $(BLUETOOTH)
|
||||
|
||||
# Add menu allowing to choose to run 68K or ARM
|
||||
|
|
|
@ -48,19 +48,6 @@ typedef struct ConnsDlgState {
|
|||
char btName[PALM_BT_NAME_LEN];
|
||||
} ConnsDlgState;
|
||||
|
||||
static void
|
||||
strFromField( XP_U16 id, XP_UCHAR* buf, XP_U16 max )
|
||||
{
|
||||
FieldPtr field = getActiveObjectPtr( id );
|
||||
XP_UCHAR* str = FldGetTextPtr( field );
|
||||
XP_U16 len = FldGetTextLength( field );
|
||||
if ( len > max-1 ) {
|
||||
len = max - 1;
|
||||
}
|
||||
XP_MEMCPY( buf, str, len );
|
||||
buf[len] = '\0';
|
||||
} /* strFromField */
|
||||
|
||||
static void
|
||||
ctlsFromState( PalmAppGlobals* XP_UNUSED_BT(globals), ConnsDlgState* state )
|
||||
{
|
||||
|
|
|
@ -204,6 +204,7 @@ setFieldStr( XP_U16 id, const XP_UCHAR* buf )
|
|||
FldInsert( field, buf, XP_STRLEN(buf) );
|
||||
} /* setFieldStr */
|
||||
|
||||
#ifdef XWFEATURE_RELAY
|
||||
void
|
||||
getFieldStr( XP_U16 id, XP_UCHAR* buf, XP_U16 max )
|
||||
{
|
||||
|
@ -216,6 +217,7 @@ getFieldStr( XP_U16 id, XP_UCHAR* buf, XP_U16 max )
|
|||
XP_MEMCPY( buf, str, len );
|
||||
buf[len] = '\0';
|
||||
} /* strFromField */
|
||||
#endif
|
||||
|
||||
/*****************************************************************************
|
||||
* Set up to build the string and ptr-to-string lists needed for the
|
||||
|
|
|
@ -436,7 +436,7 @@
|
|||
#ifdef XWFEATURE_BLUETOOTH
|
||||
# define XW_PALM_VERSION_STRING "4.3a10"
|
||||
#else
|
||||
# define XW_PALM_VERSION_STRING "4.2rc3"
|
||||
# define XW_PALM_VERSION_STRING "4.2"
|
||||
#endif
|
||||
#define CUR_PREFS_VERS 0x0405
|
||||
|
||||
|
|
Loading…
Reference in a new issue