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,9 +142,12 @@ void SwWebView::SelectShell() ...@@ -142,9 +142,12 @@ void SwWebView::SelectShell()
pSfxShell->ISA( SwDrawTextShell ) || pSfxShell->ISA( SwAnnotationShell ) ) ) pSfxShell->ISA( SwDrawTextShell ) || pSfxShell->ISA( SwAnnotationShell ) ) )
break; break;
} }
pSfxShell = rDispatcher.GetShell( --i ); if (i)
OSL_ENSURE( pSfxShell, "My Shell ist lost in space" ); {
rDispatcher.Pop( *pSfxShell, SFX_SHELL_POP_UNTIL | SFX_SHELL_POP_DELETE); pSfxShell = rDispatcher.GetShell( --i );
OSL_ENSURE( pSfxShell, "My Shell ist lost in space" );
rDispatcher.Pop( *pSfxShell, SFX_SHELL_POP_UNTIL | SFX_SHELL_POP_DELETE);
}
} }
bool bInitFormShell = false; bool bInitFormShell = false;
......
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