Module: wine Branch: master Commit: eb4ed9cadf0392658da42813040d8de236f39111 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eb4ed9cadf0392658da4281304...
Author: Dylan Smith dylan.ah.smith@gmail.com Date: Tue Jul 8 11:19:40 2008 -0400
richedit: Removed unused variable bCaretShown in ME_TextEditor.
---
dlls/riched20/editor.c | 1 - dlls/riched20/editstr.h | 1 - 2 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index 3d7f339..8a099a6 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -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) diff --git a/dlls/riched20/editstr.h b/dlls/riched20/editstr.h index 98769e4..e3f29b3 100644 --- a/dlls/riched20/editstr.h +++ b/dlls/riched20/editstr.h @@ -300,7 +300,6 @@ typedef struct tagME_TextEditor { HWND hWnd; BOOL bEmulateVersion10; - BOOL bCaretShown; ME_TextBuffer *pBuffer; ME_Cursor *pCursors; int nCursors;