diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-16 13:23:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-16 13:23:18 +0200 |
commit | f4ea34e7558fcd31096f51f632c0c0893b49cf5b (patch) | |
tree | 640ed33b53ec92697049dc229020f18d3e1d9254 /basebmp | |
parent | 9ca4c4f086c1abf558fd6b9cc7503318b72f2858 (diff) |
Fix type of nPixel
Change-Id: I2f59600318b345dce6bf00c30bb5e728c0fbebae
Diffstat (limited to 'basebmp')
-rw-r--r-- | basebmp/test/basictest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basebmp/test/basictest.cxx b/basebmp/test/basictest.cxx index 5137fbaeabd8..ebc1fcb479b4 100644 --- a/basebmp/test/basictest.cxx +++ b/basebmp/test/basictest.cxx @@ -186,7 +186,7 @@ public: const basegfx::B2IPoint aPt5(100000,100000); pDevice->setPixel( aPt5, aCol3, DrawMode::Paint ); - sal_Int32 nPixel(countPixel(pDevice, aCol2)); + auto nPixel(countPixel(pDevice, aCol2)); const basegfx::B2IPoint aPt6(aSize.getX(),aSize.getY()); pDevice->setPixel( aPt6, aCol2, DrawMode::Paint ); CPPUNIT_ASSERT_EQUAL_MESSAGE("setPixel clipping", |