gdi32: Indentation fix.

This commit is contained in:
Andrew Talbot 2012-12-15 18:55:12 +00:00 committed by Alexandre Julliard
parent 85ebbadcb0
commit 0653f7a64d

View File

@ -3131,7 +3131,7 @@ GetCharacterPlacementW(
LPCWSTR lpString, /* [in] The string for which information is to be returned */
INT uCount, /* [in] Number of WORDS in string. */
INT nMaxExtent, /* [in] Maximum extent the string is to take (in HDC logical units) */
GCP_RESULTSW *lpResults,/* [in/out] A pointer to a GCP_RESULTSW struct */
GCP_RESULTSW *lpResults, /* [in/out] A pointer to a GCP_RESULTSW struct */
DWORD dwFlags /* [in] Flags specifying how to process the string */
)
{
@ -3148,8 +3148,10 @@ GetCharacterPlacementW(
lpResults->lpDx, lpResults->lpCaretPos, lpResults->lpClass,
lpResults->lpGlyphs, lpResults->nGlyphs, lpResults->nMaxFit);
if(dwFlags&(~GCP_REORDER)) FIXME("flags 0x%08x ignored\n", dwFlags);
if(lpResults->lpClass) FIXME("classes not implemented\n");
if(dwFlags&(~GCP_REORDER))
FIXME("flags 0x%08x ignored\n", dwFlags);
if(lpResults->lpClass)
FIXME("classes not implemented\n");
if (lpResults->lpCaretPos && (dwFlags & GCP_REORDER))
FIXME("Caret positions for complex scripts not implemented\n");
@ -3172,7 +3174,8 @@ GetCharacterPlacementW(
for(i = 0; i < nSet; i++)
lpResults->lpOrder[i] = i;
}
} else
}
else
{
BIDI_Reorder(NULL, lpString, uCount, dwFlags, WINE_GCPW_FORCE_LTR, lpResults->lpOutString,
nSet, lpResults->lpOrder, NULL, NULL );