Lines 275-285
Link Here
|
275 |
/** Marks a kashida as invalid for the given text range. |
275 |
/** Marks a kashida as invalid for the given text range. |
276 |
returns true if a kashida was marked invalid |
276 |
returns true if a kashida was marked invalid |
277 |
*/ |
277 |
*/ |
278 |
inline bool MarkKashidaInvalid ( xub_StrLen nStt, xub_StrLen nLen ) { MarkOrClearKashidaInvalid( nStt, nLen, true ); } |
278 |
inline bool MarkKashidaInvalid ( xub_StrLen nStt, xub_StrLen nLen ) { return MarkOrClearKashidaInvalid( nStt, nLen, true ); } |
279 |
|
279 |
|
280 |
/** Clears array of kashidas marked as invalid |
280 |
/** Clears array of kashidas marked as invalid |
281 |
*/ |
281 |
*/ |
282 |
inline void ClearKashidaInvalid ( xub_StrLen nStt, xub_StrLen nLen ) { MarkOrClearKashidaInvalid( nStt, nLen, true ); } |
282 |
inline void ClearKashidaInvalid ( xub_StrLen nStt, xub_StrLen nLen ) { MarkOrClearKashidaInvalid( nStt, nLen, false ); } |
283 |
|
283 |
|
284 |
/** Checks if language is one of the 16 Arabic languages |
284 |
/** Checks if language is one of the 16 Arabic languages |
285 |
|
285 |
|