diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-03-12 20:06:58 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-03-12 20:06:58 +0100 |
commit | c61cd1a5a26de1d1f62389988b00229c04e36693 (patch) | |
tree | 9d6de00f4d149cba080fe88f1eff71a67786b5f0 /sd/source/ui/func/fusldlg.cxx | |
parent | 064f1e4ed53cb16d174534e20a7d02b8c93a4948 (diff) | |
parent | f2aeec8f22f37146c2f9120e8d0ead383049c1fa (diff) |
Merge commit 'ooo/DEV300_m101' into integration/dev300_m101
Diffstat (limited to 'sd/source/ui/func/fusldlg.cxx')
-rwxr-xr-x[-rw-r--r--] | sd/source/ui/func/fusldlg.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/func/fusldlg.cxx b/sd/source/ui/func/fusldlg.cxx index 4859e09f13f8..0111a9d2c9b9 100644..100755 --- a/sd/source/ui/func/fusldlg.cxx +++ b/sd/source/ui/func/fusldlg.cxx @@ -90,7 +90,7 @@ void FuSlideShowDlg::DoExecute( SfxRequest& ) for( nPage = mpDoc->GetSdPageCount( PK_STANDARD ) - 1L; nPage >= 0L; nPage-- ) { - pPage = mpDoc->GetSdPage( (USHORT) nPage, PK_STANDARD ); + pPage = mpDoc->GetSdPage( (sal_uInt16) nPage, PK_STANDARD ); String* pStr = new String( pPage->GetName() ); if ( !pStr->Len() ) @@ -99,7 +99,7 @@ void FuSlideShowDlg::DoExecute( SfxRequest& ) (*pStr).Append( UniString::CreateFromInt32( nPage + 1 ) ); } - aPageNameList.Insert( pStr, (ULONG) 0 ); + aPageNameList.Insert( pStr, (sal_uLong) 0 ); // ist dies unsere (vorhandene) erste Seite? if ( rPresPage == *pStr ) @@ -109,7 +109,7 @@ void FuSlideShowDlg::DoExecute( SfxRequest& ) } List* pCustomShowList = mpDoc->GetCustomShowList(); // No Create - BOOL bStartWithActualPage = SD_MOD()->GetSdOptions( mpDoc->GetDocumentType() )->IsStartWithActualPage(); + sal_Bool bStartWithActualPage = SD_MOD()->GetSdOptions( mpDoc->GetDocumentType() )->IsStartWithActualPage(); /* change in behaviour, even when always start with current page is enabled, range settings are still used if( bStartWithActualPage ) @@ -147,7 +147,7 @@ void FuSlideShowDlg::DoExecute( SfxRequest& ) rtl::OUString aPage; long nValue32; sal_Bool bValue; - bool bValuesChanged = FALSE; + bool bValuesChanged = sal_False; pDlg->GetAttr( aDlgSet ); @@ -253,7 +253,7 @@ void FuSlideShowDlg::DoExecute( SfxRequest& ) // wenn sich etwas geaendert hat, setzen wir das Modified-Flag, if ( bValuesChanged ) - mpDoc->SetChanged( TRUE ); + mpDoc->SetChanged( sal_True ); } delete pDlg; // Strings aus Liste loeschen |