diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-12 10:30:00 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-11-12 12:56:50 +0200 |
commit | a2f66db3a603a5f6802504f776727669811c2489 (patch) | |
tree | 9eca6a27a346c59ffaae507e83a0d193efc40801 /sw/inc/edimp.hxx | |
parent | 218840babb2f220c93f1ee9850c873861e547cd3 (diff) |
loplugin: cstylecast
Change-Id: Ica3b54a7c331f0179294e2b52aadd884f53d53dc
Diffstat (limited to 'sw/inc/edimp.hxx')
-rw-r--r-- | sw/inc/edimp.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/edimp.hxx b/sw/inc/edimp.hxx index ea7f14f7665a..c6e2956fc994 100644 --- a/sw/inc/edimp.hxx +++ b/sw/inc/edimp.hxx @@ -35,7 +35,7 @@ class SwNodeIndex; do { #define FOREACHPAM_END() \ - } while( (_pStartCrsr=(SwPaM *)_pStartCrsr->GetNext()) != __pStartCrsr ); \ + } while( (_pStartCrsr=static_cast<SwPaM *>(_pStartCrsr->GetNext())) != __pStartCrsr ); \ } struct SwPamRange |