pull/1/head
Darrell Anderson 12 years ago
parent 883738eedf
commit 7808ef5643

@ -617,7 +617,7 @@ MP_KVS_COMMAND(amipExec)
@seealso:
[module:mediaplayer]media player module documentation[/module],
[fnc]$mediaplayer.position[/fnc],
[fnc]$mediaplayer.lenght[/fnc],
[fnc]$mediaplayer.length[/fnc],
*/
MP_KVS_COMMAND(jumpTo)

@ -376,7 +376,7 @@ bool KviKvsObject_file::functionreadBlock(KviKvsObjectFunctionCall *c)
{
kvs_uint_t uLen;
KVSO_PARAMETERS_BEGIN(c)
KVSO_PARAMETER("lenght",KVS_PT_UNSIGNEDINTEGER,0,uLen)
KVSO_PARAMETER("length",KVS_PT_UNSIGNEDINTEGER,0,uLen)
KVSO_PARAMETERS_END(c)
if (!m_pFile) return true;
if(!m_pFile->isOpen())
@ -398,7 +398,7 @@ bool KviKvsObject_file::functionwriteBlock(KviKvsObjectFunctionCall *c)
TQString szBlock;
kvs_uint_t uLen;
KVSO_PARAMETERS_BEGIN(c)
KVSO_PARAMETER("lenght",KVS_PT_UNSIGNEDINTEGER,0,uLen)
KVSO_PARAMETER("length",KVS_PT_UNSIGNEDINTEGER,0,uLen)
KVSO_PARAMETER("text_block",KVS_PT_STRING,0,szBlock)
KVSO_PARAMETERS_END(c)
if (!m_pFile) return true;

@ -81,7 +81,7 @@ static const int mode_cod[] = {
Returns the current maximum length of the text that can be typed
in the editor.[br]
See also [classfnc]$setMaxLength[/classfnc]().
!fn: $setMaxLength(<max_lenght:integer>)
!fn: $setMaxLength(<max_length:integer>)
Sets maximum length of the text that can be typed in the
editor.[br]
See also [classfnc]$maxLength[/classfnc]().

@ -640,7 +640,7 @@ bool KviKvsObject_painter::functiondrawArc(KviKvsObjectFunctionCall *c)
kvs_int_t iSangle,iLena,iX,iY,iW,iH;
KVSO_PARAMETERS_BEGIN(c)
KVSO_PARAMETER("start_angle",KVS_PT_INT,0,iSangle)
KVSO_PARAMETER("a_lenght",KVS_PT_INT,0,iLena)
KVSO_PARAMETER("a_length",KVS_PT_INT,0,iLena)
KVSO_PARAMETER("x_or_array",KVS_PT_VARIANT,0,pXOrArray)
KVSO_PARAMETER("y",KVS_PT_INT,KVS_PF_OPTIONAL,iY)
KVSO_PARAMETER("w",KVS_PT_INT,KVS_PF_OPTIONAL,iW)
@ -658,7 +658,7 @@ bool KviKvsObject_painter::functiondrawChord(KviKvsObjectFunctionCall *c)
kvs_int_t iSangle,iLena,iX,iY,iW,iH;
KVSO_PARAMETERS_BEGIN(c)
KVSO_PARAMETER("start_angle",KVS_PT_INT,0,iSangle)
KVSO_PARAMETER("a_lenght",KVS_PT_INT,0,iLena)
KVSO_PARAMETER("a_length",KVS_PT_INT,0,iLena)
KVSO_PARAMETER("x_or_array",KVS_PT_VARIANT,0,pXOrArray)
KVSO_PARAMETER("y",KVS_PT_INT,KVS_PF_OPTIONAL,iY)
KVSO_PARAMETER("w",KVS_PT_INT,KVS_PF_OPTIONAL,iW)
@ -717,7 +717,7 @@ bool KviKvsObject_painter::functiondrawPie(KviKvsObjectFunctionCall *c)
kvs_int_t iSangle,iLena,iX,iY,iW,iH;
KVSO_PARAMETERS_BEGIN(c)
KVSO_PARAMETER("start_angle",KVS_PT_INT,0,iSangle)
KVSO_PARAMETER("a_lenght",KVS_PT_INT,0,iLena)
KVSO_PARAMETER("a_length",KVS_PT_INT,0,iLena)
KVSO_PARAMETER("x_or_array",KVS_PT_VARIANT,0,pXOrArray)
KVSO_PARAMETER("y",KVS_PT_INT,KVS_PF_OPTIONAL,iY)
KVSO_PARAMETER("w",KVS_PT_INT,KVS_PF_OPTIONAL,iW)

@ -144,11 +144,11 @@ static bool str_kvs_cmd_toClipboard(KviKvsModuleCommandCall * c)
@title:
$str.len
@short:
Returns the lenght of the given string
Returns the length of the given string
@syntax:
<uint> $str.len(<data:string>)
@description:
Returns the lenght (that is, number of characters) of the given string.
Returns the length (that is, number of characters) of the given string.
This function is internally aliased to [fnc]$str.length[/fnc]() too.
*/
@ -159,11 +159,11 @@ static bool str_kvs_cmd_toClipboard(KviKvsModuleCommandCall * c)
@title:
$str.length
@short:
Returns the lenght of the given string
Returns the length of the given string
@syntax:
<uint> $str.length(<data:string>)
@description:
Returns the lenght (that is, number of characters) of the given string.
Returns the length (that is, number of characters) of the given string.
This function is internally aliased to [fnc]$str.len[/fnc]() too.
*/

Loading…
Cancel
Save