summaryrefslogtreecommitdiff
path: root/sd/source/ui/docshell/docshel4.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/docshell/docshel4.cxx')
-rw-r--r--sd/source/ui/docshell/docshel4.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/docshell/docshel4.cxx b/sd/source/ui/docshell/docshel4.cxx
index 33d351e05d15..426b09b7e2d7 100644
--- a/sd/source/ui/docshell/docshel4.cxx
+++ b/sd/source/ui/docshell/docshel4.cxx
@@ -281,13 +281,13 @@ bool DrawDocShell::Load( SfxMedium& rMedium )
if( pSet )
{
- if( ( SfxItemState::SET == pSet->GetItemState(SID_PREVIEW ) ) && static_cast<const SfxBoolItem&>( pSet->Get( SID_PREVIEW ) ).GetValue() )
+ if( ( SfxItemState::SET == pSet->GetItemState(SID_PREVIEW ) ) && pSet->Get( SID_PREVIEW ).GetValue() )
{
mpDoc->SetStarDrawPreviewMode( true );
}
if( SfxItemState::SET == pSet->GetItemState(SID_DOC_STARTPRESENTATION)&&
- static_cast<const SfxBoolItem&>( pSet->Get( SID_DOC_STARTPRESENTATION ) ).GetValue() )
+ pSet->Get( SID_DOC_STARTPRESENTATION ).GetValue() )
{
bStartPresentation = true;
mpDoc->SetStartWithPresentation( true );
@@ -420,7 +420,7 @@ bool DrawDocShell::ImportFrom(SfxMedium &rMedium,
if( pSet )
{
if( SfxItemState::SET == pSet->GetItemState(SID_DOC_STARTPRESENTATION)&&
- static_cast<const SfxBoolItem&>( pSet->Get( SID_DOC_STARTPRESENTATION ) ).GetValue() )
+ pSet->Get( SID_DOC_STARTPRESENTATION ).GetValue() )
{
mpDoc->SetStartWithPresentation( true );
@@ -451,13 +451,13 @@ bool DrawDocShell::ConvertFrom( SfxMedium& rMedium )
SfxItemSet* pSet = rMedium.GetItemSet();
if( pSet )
{
- if( ( SfxItemState::SET == pSet->GetItemState(SID_PREVIEW ) ) && static_cast<const SfxBoolItem&>( pSet->Get( SID_PREVIEW ) ).GetValue() )
+ if( ( SfxItemState::SET == pSet->GetItemState(SID_PREVIEW ) ) && pSet->Get( SID_PREVIEW ).GetValue() )
{
mpDoc->SetStarDrawPreviewMode( true );
}
if( SfxItemState::SET == pSet->GetItemState(SID_DOC_STARTPRESENTATION)&&
- static_cast<const SfxBoolItem&>( pSet->Get( SID_DOC_STARTPRESENTATION ) ).GetValue() )
+ pSet->Get( SID_DOC_STARTPRESENTATION ).GetValue() )
{
bStartPresentation = true;
mpDoc->SetStartWithPresentation( true );