summaryrefslogtreecommitdiff
path: root/editeng/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-14 16:29:24 +0000
committerAndras Timar <andras.timar@collabora.com>2015-01-24 16:54:37 +0100
commit13f4da0ef04012599b50978419eb405d1f6cc750 (patch)
treeecfcfc45b751a7d8cee12122d20d71ea5b062f22 /editeng/source
parent3851229e3595327d03d9650055b3cd8b831aa342 (diff)
classic draw rectangles "fit to contour" utterly broken
regression from commit 3cbfcee36dd16e451d76c561eaaaee0ff29b01a5 Date: Sun Feb 2 22:16:48 2014 -0600 xub_StrLen and tools/string.hxx final straw There is still some 0xffff limit left and possibly some less than gracefully handled overflow/error cases Change-Id: I82bdcb6951c42fdcaa68808a251f9b2f76f8ed0b (cherry picked from commit 9977cbba8a36d3e6365cf886630d213ec7c1240c) Reviewed-on: https://gerrit.libreoffice.org/13904 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'editeng/source')
-rw-r--r--editeng/source/editeng/impedit3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/impedit3.cxx b/editeng/source/editeng/impedit3.cxx
index d717b1adbc34..d21b375cc037 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -845,7 +845,7 @@ bool ImpEditEngine::CreateLines( sal_Int32 nPara, sal_uInt32 nStartPosY )
if ( pTextRanges->size() )
{
long nA = pTextRanges->at(0);
- long nB = pTextRanges->at(0);
+ long nB = pTextRanges->at(1);
DBG_ASSERT( nA <= nB, "TextRange distorted?" );
long nW = nB - nA;
if ( nW > nMaxRangeWidth )