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

richedit: Removed unused variable bCaretShown in ME_TextEditor.

parent fb0fbc4b
......@@ -1708,7 +1708,6 @@ ME_TextEditor *ME_MakeEditor(HWND hWnd) {
ed->pBuffer = ME_MakeText();
ed->nZoomNumerator = ed->nZoomDenominator = 0;
ME_MakeFirstParagraph(ed);
ed->bCaretShown = FALSE;
/* The four cursors are for:
* 0 - The position where the caret is shown
* 1 - The anchored end of the selection (for normal selection)
......
......@@ -300,7 +300,6 @@ typedef struct tagME_TextEditor
{
HWND hWnd;
BOOL bEmulateVersion10;
BOOL bCaretShown;
ME_TextBuffer *pBuffer;
ME_Cursor *pCursors;
int nCursors;
......
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