diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index 33310a1..a876c08 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -1470,7 +1470,6 @@ static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stre memset(&parser, 0, sizeof parser); RTFSetEditStream(&parser, &inStream); parser.rtfFormat = format&(SF_TEXT|SF_RTF); - parser.hwndEdit = editor->hWnd; parser.editor = editor; parser.style = style; WriterInit(&parser); diff --git a/dlls/riched20/rtf.h b/dlls/riched20/rtf.h index 8fc8abc..a276b7c 100644 --- a/dlls/riched20/rtf.h +++ b/dlls/riched20/rtf.h @@ -1157,9 +1157,6 @@ struct _RTF_Info { ME_InStream *stream; - /* edit window to output to */ - HWND hwndEdit; - ME_TextEditor *editor; ME_Style *style;