summaryrefslogtreecommitdiff
path: root/sd/source/filter/ppt
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2021-02-10 15:19:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-02-11 07:55:52 +0100
commit75fad84f311f2c8e1228ec61932e5e26807d9a6c (patch)
treee5432d72c4d26137292ac17e0576e574d29540b7 /sd/source/filter/ppt
parente0843b1fe6e39d3e5f14c8f13476008f17c8ed2e (diff)
fix spelling MakeBlancPage->MakeBlankPage
Change-Id: Id1f37e25473e480ba4ae219e0ed64324ce73852a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110706 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/filter/ppt')
-rw-r--r--sd/source/filter/ppt/pptin.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx
index 9bead8c515c1..55e0f4bd2962 100644
--- a/sd/source/filter/ppt/pptin.cxx
+++ b/sd/source/filter/ppt/pptin.cxx
@@ -595,7 +595,7 @@ bool ImplSdPPTImport::Import()
for ( sal_uInt16 nMasterNum = 0; nMasterNum < nMasterCnt; nMasterNum++ )
{
SetPageNum( nMasterNum, PPT_MASTERPAGE );
- SdPage* pPage = static_cast<SdPage*>(MakeBlancPage( true ));
+ SdPage* pPage = static_cast<SdPage*>(MakeBlankPage( true ));
if ( pPage )
{
bool bNotesMaster = (*GetPageList( m_eCurrentPageKind ) )[ m_nCurrentPageNum ].bNotesMaster;
@@ -923,7 +923,7 @@ bool ImplSdPPTImport::Import()
PptPageKind ePageKind = m_eCurrentPageKind;
sal_uInt16 nPageNum = m_nCurrentPageNum;
- SdPage* pHandoutPage = static_cast<SdPage*>(MakeBlancPage( false ));
+ SdPage* pHandoutPage = static_cast<SdPage*>(MakeBlankPage( false ));
pHandoutPage->SetPageKind( PageKind::Handout );
pSdrModel->InsertPage( pHandoutPage );
@@ -934,7 +934,7 @@ bool ImplSdPPTImport::Import()
{
mePresChange = PresChange::SemiAuto;
SetPageNum( nPage );
- SdPage* pPage = static_cast<SdPage*>(MakeBlancPage( false ));
+ SdPage* pPage = static_cast<SdPage*>(MakeBlankPage( false ));
PptSlidePersistEntry* pMasterPersist = nullptr;
if ( HasMasterPage( nPage ) ) // try to get the LayoutName from the masterpage
{
@@ -1011,7 +1011,7 @@ bool ImplSdPPTImport::Import()
// creating the corresponding note page
m_eCurrentPageKind = PPT_NOTEPAGE;
- SdPage* pNotesPage = static_cast<SdPage*>(MakeBlancPage( false ));
+ SdPage* pNotesPage = static_cast<SdPage*>(MakeBlankPage( false ));
sal_uInt16 nNotesMasterNum = GetMasterPageIndex( nPage ) + 1;
sal_uInt32 nNotesPageId = GetNotesPageId( nPage );
if ( nNotesPageId )
@@ -1056,7 +1056,7 @@ bool ImplSdPPTImport::Import()
{
// that can happen by document templates
m_eCurrentPageKind = PPT_SLIDEPAGE;
- SdrPage* pPage = MakeBlancPage( false );
+ SdrPage* pPage = MakeBlankPage( false );
pSdrModel->InsertPage( pPage );
// #i37397#, trying to set the title master for the first page
@@ -1084,7 +1084,7 @@ bool ImplSdPPTImport::Import()
static_cast<SdPage*>(pPage)->SetAutoLayout( AUTOLAYOUT_TITLE, true, true );
m_eCurrentPageKind = PPT_NOTEPAGE;
- SdrPage* pNPage = MakeBlancPage( false );
+ SdrPage* pNPage = MakeBlankPage( false );
pSdrModel->InsertPage( pNPage );
}
SetPageNum( nPageNum, ePageKind );