summaryrefslogtreecommitdiff
path: root/vcl/source/gdi
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-13 17:15:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-14 10:39:13 +0200
commitbc8a8443a4c9f85dbfa8e064d14c603f5a2d160f (patch)
treec5cd5fd55fde31c0a2d0870f74aff717428f739c /vcl/source/gdi
parent0cbc03f46828296b06bb58ae7e7face7bc1a6364 (diff)
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I5d37ddd95068d807d0f28dd2f00d43b227e910c5
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r--vcl/source/gdi/impanmvw.hxx1
-rw-r--r--vcl/source/gdi/pngread.cxx1
-rw-r--r--vcl/source/gdi/pngwrite.cxx5
3 files changed, 1 insertions, 6 deletions
diff --git a/vcl/source/gdi/impanmvw.hxx b/vcl/source/gdi/impanmvw.hxx
index 455a6eec7888..fe728a5b6532 100644
--- a/vcl/source/gdi/impanmvw.hxx
+++ b/vcl/source/gdi/impanmvw.hxx
@@ -52,7 +52,6 @@ private:
sal_uLong mnActPos;
Disposal meLastDisposal;
sal_Bool mbPause;
- sal_Bool mbFirst;
sal_Bool mbMarked;
sal_Bool mbHMirr;
sal_Bool mbVMirr;
diff --git a/vcl/source/gdi/pngread.cxx b/vcl/source/gdi/pngread.cxx
index a7cf7eceb9c8..a01b66d110a8 100644
--- a/vcl/source/gdi/pngread.cxx
+++ b/vcl/source/gdi/pngread.cxx
@@ -123,7 +123,6 @@ private:
sal_uInt32 mnYAdd; // the increment for input images Y coords for the current pass
int mnPreviewShift; // shift to convert orig image coords into preview image coords
int mnPreviewMask; // == ((1 << mnPreviewShift) - 1)
- sal_uInt16 mnIStmOldMode;
sal_uInt16 mnTargetDepth; // pixel depth of target bitmap
sal_uInt8 mnTransRed;
sal_uInt8 mnTransGreen;
diff --git a/vcl/source/gdi/pngwrite.cxx b/vcl/source/gdi/pngwrite.cxx
index 3d8de49003c8..9a90fd9e08d3 100644
--- a/vcl/source/gdi/pngwrite.cxx
+++ b/vcl/source/gdi/pngwrite.cxx
@@ -98,8 +98,6 @@ private:
sal_uLong mnBBP; // bytes per pixel ( needed for filtering )
sal_Bool mbTrueAlpha;
sal_uLong mnCRC;
- long mnChunkDatSize;
- sal_uLong mnLastPercent;
void ImplWritepHYs( const BitmapEx& rBitmapEx );
void ImplWriteIDAT();
@@ -124,8 +122,7 @@ PNGWriterImpl::PNGWriterImpl( const BitmapEx& rBmpEx,
mpAccess ( NULL ),
mpMaskAccess ( NULL ),
mpZCodec ( new ZCodec( DEFAULT_IN_BUFSIZE, DEFAULT_OUT_BUFSIZE, MAX_MEM_USAGE ) ),
- mnCRC(0UL),
- mnLastPercent ( 0UL )
+ mnCRC(0UL)
{
if ( !rBmpEx.IsEmpty() )
{