mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
winhelp: Set the alignment of paragraph in richedit.
This commit is contained in:
parent
26de7ddcd4
commit
300fa96245
1 changed files with 9 additions and 1 deletions
|
@ -1092,7 +1092,15 @@ static BOOL HLPFILE_BrowseParagraph(HLPFILE_PAGE* page, struct RtfData* rd, BYTE
|
|||
if (!HLPFILE_RtfAddControl(rd, tmp)) goto done;
|
||||
}
|
||||
}
|
||||
/* 0x0400, 0x0800 and 0x1000 don't need space */
|
||||
switch (bits & 0xc00)
|
||||
{
|
||||
default: WINE_FIXME("Unsupported alignment 0xC00\n"); break;
|
||||
case 0: if (!HLPFILE_RtfAddControl(rd, "\\ql")) goto done; break;
|
||||
case 0x400: if (!HLPFILE_RtfAddControl(rd, "\\qr")) goto done; break;
|
||||
case 0x800: if (!HLPFILE_RtfAddControl(rd, "\\qc")) goto done; break;
|
||||
}
|
||||
|
||||
/* 0x1000 doesn't need space */
|
||||
if ((bits & 0xE080) != 0)
|
||||
WINE_FIXME("Unsupported bits %04x, potential trouble ahead\n", bits);
|
||||
|
||||
|
|
Loading…
Reference in a new issue