Commit e2f6b1d8 authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

richedit: Don't break when streaming out a table, just continue.

This is a regression caused by commit 54b53b60 which change the code to use if statements instead of a switch, so the break statement should have been changed to a continue statement.
parent 5116b979
......@@ -838,7 +838,7 @@ static BOOL ME_StreamOutRTF(ME_TextEditor *editor, ME_OutStream *pStream,
TRACE("flags %xh\n", cursor.pRun->member.run.nFlags);
/* TODO: emit embedded objects */
if (cursor.pPara->member.para.nFlags & (MEPF_ROWSTART|MEPF_ROWEND))
break;
continue;
if (cursor.pRun->member.run.nFlags & MERF_GRAPHICS) {
FIXME("embedded objects are not handled\n");
} else if (cursor.pRun->member.run.nFlags & MERF_TAB) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment