riched20: Fix placement of crlf on font table streamout.
This commit is contained in:
parent
7ab6c22f5a
commit
6f17327728
|
@ -295,10 +295,10 @@ ME_StreamOutRTFFontAndColorTbl(ME_OutStream *pStream, ME_DisplayItem *pFirstRun,
|
||||||
}
|
}
|
||||||
if (!ME_StreamOutRTFText(pStream, table[i].szFaceName, -1))
|
if (!ME_StreamOutRTFText(pStream, table[i].szFaceName, -1))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
if (!ME_StreamOutPrint(pStream, ";}\r\n"))
|
if (!ME_StreamOutPrint(pStream, ";}"))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if (!ME_StreamOutPrint(pStream, "}"))
|
if (!ME_StreamOutPrint(pStream, "}\r\n"))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
/* Output colors table if not empty */
|
/* Output colors table if not empty */
|
||||||
|
|
Loading…
Reference in New Issue