Module: wine Branch: master Commit: 6dd4b071ccfbe41fc883bce5f3d49b466ea53ce5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6dd4b071ccfbe41fc883bce5f3...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Fri May 7 21:42:04 2010 +0200
riched20: Remove variable pCell which is not really used from ME_StreamIn.
---
dlls/riched20/editor.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index 7a11647..531fae1 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -1495,7 +1495,6 @@ static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stre { /* Delete any incomplete table row at the end of the rich text. */ int nOfs, nChars; - ME_DisplayItem *pCell; ME_DisplayItem *para;
parser.rtfMinor = rtfRow; @@ -1515,7 +1514,6 @@ static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stre assert(para->member.para.nFlags & MEPF_ROWEND); para = para->member.para.next_para; } - pCell = para->member.para.pCell;
editor->pCursors[1].pPara = para; editor->pCursors[1].pRun = ME_FindItemFwd(para, diRun);