diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-15 20:46:34 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-27 16:51:27 +0100 |
commit | cb98c423bbdada017a687186a5c06def6cb6f7a2 (patch) | |
tree | 18228bb45f72ce8f90ec615841ced901ebeec8b8 /desktop/source | |
parent | 4088208d731ac281c88a8854978b683aee477385 (diff) |
sal_uLong/sal_uIntPtr/sal_uInt16 to sal_uInt32
also avoid some explicit temporaries and group some checks.
Change-Id: I7795b208dde53fd383b8c75f72dd9f56429aea2b
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/deployment/gui/license_dialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/gui/license_dialog.cxx b/desktop/source/deployment/gui/license_dialog.cxx index c0420c43e940..ec47151e26f4 100644 --- a/desktop/source/deployment/gui/license_dialog.cxx +++ b/desktop/source/deployment/gui/license_dialog.cxx @@ -177,7 +177,7 @@ void LicenseView::Notify( SfxBroadcaster&, const SfxHint& rHint ) if ( pTextHint ) { bool bLastVal = EndReached(); - sal_uLong nId = pTextHint->GetId(); + const sal_uInt32 nId = pTextHint->GetId(); if ( nId == TEXT_HINT_PARAINSERTED ) { |