mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-29 10:26:36 +01:00
cleanup
This commit is contained in:
parent
6acb9014a6
commit
14b414586e
1 changed files with 4 additions and 2 deletions
|
@ -361,11 +361,13 @@ DictListFree( MPFORMAL PalmDictList* dl )
|
|||
XP_U16
|
||||
DictListCount( PalmDictList* dl )
|
||||
{
|
||||
XP_U16 result;
|
||||
if ( !dl ) {
|
||||
return 0;
|
||||
result = 0;
|
||||
} else {
|
||||
return dl->nDicts;
|
||||
result = dl->nDicts;
|
||||
}
|
||||
return result;
|
||||
} /* dictListCount */
|
||||
|
||||
#ifdef NODE_CAN_4
|
||||
|
|
Loading…
Reference in a new issue