diff options
author | nyamatongwe <unknown> | 2011-08-07 21:44:33 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-08-07 21:44:33 +1000 |
commit | 04bbe265db17b079603a35fdb8afdfcac6a35ff9 (patch) | |
tree | 30a6e3181bb860cd526fff95838ffe5cda522645 /win32/PlatWin.cxx | |
parent | a87f9b8b42dc830045972b772d61009f45bbf551 (diff) | |
download | scintilla-mirror-04bbe265db17b079603a35fdb8afdfcac6a35ff9.tar.gz |
Remove unused field.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r-- | win32/PlatWin.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index a1ae68b82..6e1f3f3be 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -462,7 +462,6 @@ class SurfaceImpl : public Surface { ID2D1RenderTarget *pRenderTarget; bool ownRenderTarget; - bool needsEndDraw; int clipsActive; IDWriteTextFormat *pTextFormat; @@ -549,7 +548,6 @@ SurfaceImpl::SurfaceImpl() : pRenderTarget = NULL; ownRenderTarget = false; - needsEndDraw = false; clipsActive = 0; pTextFormat = NULL; baseline = 1.0f; @@ -630,7 +628,6 @@ void SurfaceImpl::InitPixMap(int width, int height, Surface *surface_, WindowID) pRenderTarget = pCompatibleRenderTarget; pRenderTarget->BeginDraw(); ownRenderTarget = true; - needsEndDraw = true; } } |