summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/dlgctrls.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/dlg/dlgctrls.cxx')
-rwxr-xr-xsd/source/ui/dlg/dlgctrls.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/dlg/dlgctrls.cxx b/sd/source/ui/dlg/dlgctrls.cxx
index 1a5a612d37ad..8da21b313027 100755
--- a/sd/source/ui/dlg/dlgctrls.cxx
+++ b/sd/source/ui/dlg/dlgctrls.cxx
@@ -84,14 +84,14 @@ void FadeEffectLB::Fill()
/*
void FadeEffectLB::SelectEffect( presentation::FadeEffect eFE )
{
- BOOL bFound = FALSE;
+ sal_Bool bFound = sal_False;
for( long i = 0, nCount = sizeof( aEffects ) / sizeof( FadeEffectPair ); ( i < nCount ) && !bFound; i++ )
{
if( aEffects[ i ].meFE == eFE )
{
- SelectEntryPos( (USHORT) i );
- bFound = TRUE;
+ SelectEntryPos( (sal_uInt16) i );
+ bFound = sal_True;
}
}
}
@@ -101,7 +101,7 @@ void FadeEffectLB::SelectEffect( presentation::FadeEffect eFE )
void FadeEffectLB::applySelected( SdPage* pSlide ) const
{
- const USHORT nPos = GetSelectEntryPos();
+ const sal_uInt16 nPos = GetSelectEntryPos();
if( pSlide && (nPos < mpImpl->maPresets.size() ) )
{