diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-03 09:18:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-06 09:21:36 +0200 |
commit | 3b34655cc5ba586a616533e2efe3426d7c4e5aef (patch) | |
tree | e5f8428cd121c4543e74ff6524c27c9399e1d101 /svx/source/gallery2/galbrws1.cxx | |
parent | fd7a21d7ea6dd36d4d9b86ecf38ad798af3fb1df (diff) |
loplugin: cstylecast
Change-Id: Id2b5b2510fb13f77592d7a0455f34ccd8a20c2d7
Diffstat (limited to 'svx/source/gallery2/galbrws1.cxx')
-rw-r--r-- | svx/source/gallery2/galbrws1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/gallery2/galbrws1.cxx b/svx/source/gallery2/galbrws1.cxx index ba2aa7220803..5846b9c902ea 100644 --- a/svx/source/gallery2/galbrws1.cxx +++ b/svx/source/gallery2/galbrws1.cxx @@ -457,7 +457,7 @@ void GalleryBrowser1::GetFocus() void GalleryBrowser1::Notify( SfxBroadcaster&, const SfxHint& rHint ) { - const GalleryHint& rGalleryHint = (const GalleryHint&) rHint; + const GalleryHint& rGalleryHint = static_cast<const GalleryHint&>(rHint); switch( rGalleryHint.GetType() ) { |