diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-02 07:36:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-02 07:37:20 +0200 |
commit | 039b887c54fd7e8cd8a4964d1633fdfc300e938e (patch) | |
tree | f65f1ea0296ea30bccb1dc79bf1066e718bc517e /sfx2/source/config | |
parent | 059f5a95b245252d72ea0930668bb222103dbd14 (diff) |
loplugin: cstylecast
Change-Id: I4a230f45e91773fca7d537e91c9e9fb54773cf10
Diffstat (limited to 'sfx2/source/config')
-rw-r--r-- | sfx2/source/config/evntconf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/config/evntconf.cxx b/sfx2/source/config/evntconf.cxx index 33dfd04b1c73..e84f772c943e 100644 --- a/sfx2/source/config/evntconf.cxx +++ b/sfx2/source/config/evntconf.cxx @@ -77,7 +77,7 @@ bool SfxEventNamesItem::operator==( const SfxPoolItem& rAttr ) const DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unequal types" ); const SfxEventNamesList& rOwn = aEventsList; - const SfxEventNamesList& rOther = ( (SfxEventNamesItem&) rAttr ).aEventsList; + const SfxEventNamesList& rOther = static_cast<const SfxEventNamesItem&>( rAttr ).aEventsList; if ( rOwn.size() != rOther.size() ) return false; |