summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-05-12 17:55:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-05-12 17:55:56 +0100
commitfa169ffc3d8d5e3cde41411858cc40546fc04e0e (patch)
tree7b5119fa3866deb8902ae0265713232b1a891650 /vcl
parent2ede6c95e6481c92cc199e7d74fd36c841636304 (diff)
WaE: signed/unsigned comparison
Change-Id: I89d6ce71fc463ee8aca34cb3d39afc9d2304f445
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/wmf/enhwmf.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/filter/wmf/enhwmf.cxx b/vcl/source/filter/wmf/enhwmf.cxx
index 5f346b6f3003..560fc9e9366e 100644
--- a/vcl/source/filter/wmf/enhwmf.cxx
+++ b/vcl/source/filter/wmf/enhwmf.cxx
@@ -943,10 +943,10 @@ sal_Bool EnhWMFReader::ReadEnhWMF()
sal_Int32 xDest(0), yDest(0), cxDest(0), cyDest(0);
BLENDFUNCTION aFunc;
- sal_Int32 xSrc(0), ySrc(0);
+ sal_Int32 xSrc(0), ySrc(0), cxSrc(0), cySrc(0);
XForm xformSrc;
sal_uInt32 BkColorSrc(0), iUsageSrc(0), offBmiSrc(0);
- sal_uInt32 cbBmiSrc(0), offBitsSrc(0), cbBitsSrc(0), cxSrc(0), cySrc(0);
+ sal_uInt32 cbBmiSrc(0), offBitsSrc(0), cbBitsSrc(0);
sal_uInt32 nStart = pWMF->Tell() - 8;
pWMF->SeekRel( 0x10 );