Kaydet (Commit) 724d34d5 authored tarafından Caolán McNamara's avatar Caolán McNamara

ofz#6891 empty vector access

Change-Id: Ic36d03d2646ebd90bea5fa91bc4dac3596a55d4a
Reviewed-on: https://gerrit.libreoffice.org/51224Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst ae0a3825
<table align=left><td><table><S STYLE="position:absolute;width: 6">
\ No newline at end of file
......@@ -2404,7 +2404,10 @@ void HTMLTable::MakeTable( SwTableBox *pBox, sal_uInt16 nAbsAvail,
// Only tables with relative width or without width should be modified
m_xLayoutInfo->SetMustResize( m_bPrcWidth || !m_nWidth );
m_xLayoutInfo->SetWidths();
if (!pLine1->GetTabBoxes().empty())
m_xLayoutInfo->SetWidths();
else
SAL_WARN("sw.html", "no table box");
const_cast<SwTable *>(m_pSwTable)->SetHTMLTableLayout(m_xLayoutInfo);
......
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