aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-08-07 21:44:33 +1000
committernyamatongwe <unknown>2011-08-07 21:44:33 +1000
commit04bbe265db17b079603a35fdb8afdfcac6a35ff9 (patch)
tree30a6e3181bb860cd526fff95838ffe5cda522645
parenta87f9b8b42dc830045972b772d61009f45bbf551 (diff)
downloadscintilla-mirror-04bbe265db17b079603a35fdb8afdfcac6a35ff9.tar.gz
Remove unused field.
-rw-r--r--win32/PlatWin.cxx3
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;
}
}