diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-27 16:57:21 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-09-06 15:47:44 -0500 |
commit | 5bce32904091ffe28884fd5c0f4801ee82bad101 (patch) | |
tree | fc2573078a858de456a0dc7b7810176d433241c7 /desktop | |
parent | 10143717834d8401d85fdf9564e782a58b9983ec (diff) |
SfxHint: convert home-grown RTTI to normal C++ RTTI
Also note that I fixed a bug in SvxFontMenuControl::Notify
where the if statement had the check the wrong way around.
Change-Id: I611e8929c65818191e36bd80f2b985820ada4411
Reviewed-on: https://gerrit.libreoffice.org/11147
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/gui/license_dialog.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/desktop/source/deployment/gui/license_dialog.cxx b/desktop/source/deployment/gui/license_dialog.cxx index 16a7dfb38dee..183504801d00 100644 --- a/desktop/source/deployment/gui/license_dialog.cxx +++ b/desktop/source/deployment/gui/license_dialog.cxx @@ -154,10 +154,11 @@ bool LicenseView::IsEndReached() const void LicenseView::Notify( SfxBroadcaster&, const SfxHint& rHint ) { - if ( rHint.IsA( TYPE(TextHint) ) ) + const TextHint* pTextHint = dynamic_cast<const TextHint*>(&rHint); + if ( pTextHint ) { bool bLastVal = EndReached(); - sal_uLong nId = ((const TextHint&)rHint).GetId(); + sal_uLong nId = pTextHint->GetId(); if ( nId == TEXT_HINT_PARAINSERTED ) { |