Simplify SetSelectionRange and make consistent with SetSelection.
Fix a bug that returns true for character and paragraph style tests if no characters or paragraphs were found. Fix SetSelection to position caret at end. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@63345 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3012,7 +3012,7 @@ bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange&
|
||||
node = node->GetNext();
|
||||
}
|
||||
|
||||
return foundCount == matchingCount;
|
||||
return foundCount == matchingCount && foundCount != 0;
|
||||
}
|
||||
|
||||
bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange& range, const wxTextAttrEx& style) const
|
||||
@@ -3056,7 +3056,7 @@ bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange&
|
||||
|
||||
node = node->GetNext();
|
||||
}
|
||||
return foundCount == matchingCount;
|
||||
return foundCount == matchingCount && foundCount != 0;
|
||||
}
|
||||
|
||||
bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange& range, const wxTextAttrEx& style) const
|
||||
|
||||
Reference in New Issue
Block a user