Kaydet (Commit) 8712f055 authored tarafından Caolán McNamara's avatar Caolán McNamara

fix corner case crash in xhtml headless export as pdf

Change-Id: I255504e2c84783387d2fc308800812bef5e82734
üst ed00d0dd
...@@ -142,10 +142,13 @@ void SwWebView::SelectShell() ...@@ -142,10 +142,13 @@ void SwWebView::SelectShell()
pSfxShell->ISA( SwDrawTextShell ) || pSfxShell->ISA( SwAnnotationShell ) ) ) pSfxShell->ISA( SwDrawTextShell ) || pSfxShell->ISA( SwAnnotationShell ) ) )
break; break;
} }
if (i)
{
pSfxShell = rDispatcher.GetShell( --i ); pSfxShell = rDispatcher.GetShell( --i );
OSL_ENSURE( pSfxShell, "My Shell ist lost in space" ); OSL_ENSURE( pSfxShell, "My Shell ist lost in space" );
rDispatcher.Pop( *pSfxShell, SFX_SHELL_POP_UNTIL | SFX_SHELL_POP_DELETE); rDispatcher.Pop( *pSfxShell, SFX_SHELL_POP_UNTIL | SFX_SHELL_POP_DELETE);
} }
}
bool bInitFormShell = false; bool bInitFormShell = false;
if( !GetFormShell() ) if( !GetFormShell() )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment