diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-22 15:34:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-26 08:18:10 +0200 |
commit | 2fd083579d42d7649c162f18db235498198ff3f4 (patch) | |
tree | b9da2f8f71dc0ed7ae07dfca4e921caf96f7a01b /vcl/qa | |
parent | ceea1f3c735b4e6d40cc0cfd8c249b6aff6b4e89 (diff) |
loplugin:returnconstval in various
Change-Id: Ib5d293417b1faeb7ef63a8df99fc1ba644989cdc
Reviewed-on: https://gerrit.libreoffice.org/78079
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/qa')
-rw-r--r-- | vcl/qa/cppunit/BitmapTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/BitmapTest.cxx b/vcl/qa/cppunit/BitmapTest.cxx index b59b7789aa57..fcc630f69bba 100644 --- a/vcl/qa/cppunit/BitmapTest.cxx +++ b/vcl/qa/cppunit/BitmapTest.cxx @@ -198,7 +198,7 @@ void BitmapTest::testEmpty() CPPUNIT_ASSERT(aBitmap.IsEmpty()); } -const Bitmap createTestBitmap() +Bitmap createTestBitmap() { Bitmap aBmp(Size(4, 4), 24); BitmapWriteAccess aBmpAccess(aBmp); |