diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:07:39 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:09:27 +0100 |
commit | 85f28ec44a2c169c91dac9346e9c71feda6a6cab (patch) | |
tree | 59313be197397c62a2b8f8b8829a65023a20f17e /include | |
parent | 8c8d955998a64c8de7fb7dc81035b8889fdfe2e2 (diff) |
Clean up C-style casts from pointers to void
Change-Id: I5f4029fc583952ae6392dbf2d478155982ccecef
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdetc.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/svdetc.hxx b/include/svx/svdetc.hxx index ee9e0e5bef6c..27683824e12b 100644 --- a/include/svx/svdetc.hxx +++ b/include/svx/svdetc.hxx @@ -248,7 +248,7 @@ inline SdrGlobalData& GetSdrGlobalData() if (*ppAppData==NULL) { *ppAppData=new SdrGlobalData; } - return *((SdrGlobalData*)*ppAppData); + return *static_cast<SdrGlobalData*>(*ppAppData); } namespace sdr |