]> git.saurik.com Git - wxWidgets.git/commitdiff
Two bug fixes for FindWrapPosition
authorJulian Smart <julian@anthemion.co.uk>
Tue, 22 Apr 2008 07:57:28 +0000 (07:57 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 22 Apr 2008 07:57:28 +0000 (07:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53308 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/richtext/richtextbuffer.cpp

index be0a26852c268fd5ca150609eeb94d3853a58472..4a7e45794413275f1f4c507fa6c0a0c873b1065c 100644 (file)
@@ -4022,6 +4022,9 @@ bool wxRichTextParagraph::GetContiguousPlainText(wxString& text, const wxRichTex
 /// Find a suitable wrap position.
 bool wxRichTextParagraph::FindWrapPosition(const wxRichTextRange& range, wxDC& dc, int availableSpace, long& wrapPosition, wxArrayInt* partialExtents)
 {
 /// Find a suitable wrap position.
 bool wxRichTextParagraph::FindWrapPosition(const wxRichTextRange& range, wxDC& dc, int availableSpace, long& wrapPosition, wxArrayInt* partialExtents)
 {
+    if (range.GetLength() <= 0)
+        return false;
+
     // Find the first position where the line exceeds the available space.
     wxSize sz;
     long breakPosition = range.GetEnd();
     // Find the first position where the line exceeds the available space.
     wxSize sz;
     long breakPosition = range.GetEnd();
@@ -4041,7 +4044,7 @@ bool wxRichTextParagraph::FindWrapPosition(const wxRichTextRange& range, wxDC& d
         {
             int widthFromStartOfThisRange = (*partialExtents)[i - GetRange().GetStart()] - widthBefore;
 
         {
             int widthFromStartOfThisRange = (*partialExtents)[i - GetRange().GetStart()] - widthBefore;
 
-            if (widthFromStartOfThisRange >= availableSpace)
+            if (widthFromStartOfThisRange > availableSpace)
             {
                 breakPosition = i-1;
                 break;
             {
                 breakPosition = i-1;
                 break;