summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-12-02 22:20:25 +0100
committerMichael Stahl <mstahl@redhat.com>2013-12-02 23:37:11 +0100
commit790896d9a557d34ea91d6e5926471de66503be7a (patch)
tree906212cd8f804e4de2d80a844c7e2f09fb91d32d
parent5170b4e49afd113567d4bbdd8f7b6be9eaa66888 (diff)
fdo#71749: sw: WW8: don't loop on tables in footnotes
(regression from ee1db992b98378b5e2f5e9aa8af0e36c375e582f) Change-Id: Id10b6fb8e9e3697b10a1df605cb48d94a55ad207
-rw-r--r--sw/source/filter/ww8/ww8par.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 06c1287a1554..651800ba1756 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -2707,7 +2707,7 @@ bool SwWW8ImplReader::ProcessSpecial(bool &rbReSync, WW8_CP nStartCp)
pPlcxMan->GetPap()->Restore( aSave );
}
}
- } while (nInTable < nCellLevel);
+ } while (!bFtnEdn && (nInTable < nCellLevel));
return bTableRowEnd;
}