diff options
Diffstat (limited to 'sd/source/ui/annotations/annotationmanager.cxx')
-rw-r--r-- | sd/source/ui/annotations/annotationmanager.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sd/source/ui/annotations/annotationmanager.cxx b/sd/source/ui/annotations/annotationmanager.cxx index e2e5977a7e1e..d172d5acd0af 100644 --- a/sd/source/ui/annotations/annotationmanager.cxx +++ b/sd/source/ui/annotations/annotationmanager.cxx @@ -177,8 +177,7 @@ AnnotationManagerImpl::AnnotationManagerImpl( ViewShellBase& rViewShellBase ) , mbShowAnnotations( true ) , mnUpdateTagsEvent( nullptr ) { - SdOptions* pOptions = SD_MOD()->GetSdOptions(mpDoc->GetDocumentType()); - if( pOptions ) + if (SdOptions* pOptions = SdModule::get()->GetSdOptions(mpDoc->GetDocumentType())) mbShowAnnotations = pOptions->IsShowComments(); } @@ -289,8 +288,7 @@ void AnnotationManagerImpl::ShowAnnotations( bool bShow ) { mbShowAnnotations = bShow; - SdOptions* pOptions = SD_MOD()->GetSdOptions(mpDoc->GetDocumentType()); - if( pOptions ) + if (SdOptions* pOptions = SdModule::get()->GetSdOptions(mpDoc->GetDocumentType())) pOptions->SetShowComments( mbShowAnnotations ); UpdateTags(); |