Re: Question about calling a method with a default parameter

2012-07-09 Thread Lubos Lunak
On Sunday 08 of July 2012, Christophe JAILLET wrote: Hi, Sometimes some methods are declared with some default value(s) As an example, here is the definition of matchAsciiL for OUString sal_Bool matchAsciiL( const sal_Char* asciiStr, sal_Int32 asciiStrLength, sal_Int32 fromIndex = 0 )

Question about calling a method with a default parameter

2012-07-08 Thread Christophe JAILLET
Hi, Sometimes some methods are declared with some default value(s) As an example, here is the definition of matchAsciiL for OUString sal_Bool matchAsciiL( const sal_Char* asciiStr, sal_Int32 asciiStrLength, sal_Int32 fromIndex = 0 ) const SAL_THROW(()) When these functions are called,