Style fixes only
This commit is contained in:
parent
c258d2fa0e
commit
a8f3c5a8fb
@ -1021,7 +1021,7 @@ void
|
|||||||
BFont::GetEscapements(const char charArray[], int32 numChars,
|
BFont::GetEscapements(const char charArray[], int32 numChars,
|
||||||
escapement_delta *delta, float escapementArray[]) const
|
escapement_delta *delta, float escapementArray[]) const
|
||||||
{
|
{
|
||||||
if (!charArray || numChars < 1 || !escapementArray)
|
if (charArray = NULL || numChars < 1 || escapementArray = NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
BPrivate::AppServerLink link;
|
BPrivate::AppServerLink link;
|
||||||
@ -1063,7 +1063,7 @@ BFont::GetEscapements(const char charArray[], int32 numChars,
|
|||||||
escapement_delta *delta, BPoint escapementArray[],
|
escapement_delta *delta, BPoint escapementArray[],
|
||||||
BPoint offsetArray[]) const
|
BPoint offsetArray[]) const
|
||||||
{
|
{
|
||||||
if (!charArray || numChars < 1 || !escapementArray)
|
if (charArray = NULL || numChars < 1 || escapementArray = NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
BPrivate::AppServerLink link;
|
BPrivate::AppServerLink link;
|
||||||
|
Loading…
Reference in New Issue
Block a user