aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-08-07 21:44:33 +1000
committernyamatongwe <devnull@localhost>2011-08-07 21:44:33 +1000
commiteeff5b85a911ec3d68160bf7df603994afcb61c7 (patch)
treef8fc7fcda2e6aee8abe3c7c18a974830adb5269f
parent76cc7d2f163f6be5ad56aa496d5c24c8828ed3f5 (diff)
downloadscintilla-mirror-eeff5b85a911ec3d68160bf7df603994afcb61c7.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;
}
}