richedit: Removed unused variable bCaretShown in ME_TextEditor.

This commit is contained in:
Dylan Smith 2008-07-08 11:19:40 -04:00 committed by Alexandre Julliard
parent fb0fbc4b85
commit eb4ed9cadf
2 changed files with 0 additions and 2 deletions

View File

@ -1708,7 +1708,6 @@ ME_TextEditor *ME_MakeEditor(HWND hWnd) {
ed->pBuffer = ME_MakeText(); ed->pBuffer = ME_MakeText();
ed->nZoomNumerator = ed->nZoomDenominator = 0; ed->nZoomNumerator = ed->nZoomDenominator = 0;
ME_MakeFirstParagraph(ed); ME_MakeFirstParagraph(ed);
ed->bCaretShown = FALSE;
/* The four cursors are for: /* The four cursors are for:
* 0 - The position where the caret is shown * 0 - The position where the caret is shown
* 1 - The anchored end of the selection (for normal selection) * 1 - The anchored end of the selection (for normal selection)

View File

@ -300,7 +300,6 @@ typedef struct tagME_TextEditor
{ {
HWND hWnd; HWND hWnd;
BOOL bEmulateVersion10; BOOL bEmulateVersion10;
BOOL bCaretShown;
ME_TextBuffer *pBuffer; ME_TextBuffer *pBuffer;
ME_Cursor *pCursors; ME_Cursor *pCursors;
int nCursors; int nCursors;