diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-24 12:33:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-24 12:36:29 +0200 |
commit | 24df2bd5cb68f8de5e22a27f6a3505d099bc3581 (patch) | |
tree | 1b7d12fd9658bd0942c350d86f4ddda3f69b2a3f /svx/source/svdraw/svdfmtf.cxx | |
parent | b0d9184ad2dab26e7ee17d8c0ace9f5e5e753026 (diff) |
loplugin:simplifybool
Change-Id: I02bc964fd2b240fb5238e3de72239d410587ae5c
Diffstat (limited to 'svx/source/svdraw/svdfmtf.cxx')
-rw-r--r-- | svx/source/svdraw/svdfmtf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdfmtf.cxx b/svx/source/svdraw/svdfmtf.cxx index 70734e9be2d7..d15f9c0c5a25 100644 --- a/svx/source/svdraw/svdfmtf.cxx +++ b/svx/source/svdraw/svdfmtf.cxx @@ -561,7 +561,7 @@ void ImpSdrGDIMetaFileImport::InsertObj(SdrObject* pObj, bool bScale) aPoly, maClip, true, - aPoly.isClosed() ? false : true)); + !aPoly.isClosed())); const basegfx::B2DRange aNewRange(aNewPoly.getB2DRange()); if(!aNewRange.isEmpty()) |