diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-11 17:36:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-11 17:36:44 +0100 |
commit | 4c799fa83a5a51f27301110ae165855ffbc7a596 (patch) | |
tree | df3483964cb88c56e8b3e7e92659ac90573fb33b /include | |
parent | a31b7a941eee06efaa92a54a49c955c914fd20aa (diff) |
loplugin:redundantcast: svx
(after a to-be-committed improved loplugin:cstylecast would have rewritten the
C-style casts into static_casts)
Change-Id: Icd1f084d4ffab286fd3c7c02693444eaf7799354
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/sdrpaintwindow.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/sdrpaintwindow.hxx b/include/svx/sdrpaintwindow.hxx index 691837b2a5d5..f36f5c8089a4 100644 --- a/include/svx/sdrpaintwindow.hxx +++ b/include/svx/sdrpaintwindow.hxx @@ -130,7 +130,7 @@ public: void SetRedrawRegion(const vcl::Region& rNew); // #i72889# read/write access to TemporaryTarget - bool getTemporaryTarget() const { return (bool)mbTemporaryTarget; } + bool getTemporaryTarget() const { return mbTemporaryTarget; } void setTemporaryTarget(bool bNew) { mbTemporaryTarget = bNew; } // #i72889# get target output device, take into account output buffering |