diff --git a/include/wx/richtext/richtextctrl.h b/include/wx/richtext/richtextctrl.h index a23ff724b3..eb0adc0d44 100644 --- a/include/wx/richtext/richtextctrl.h +++ b/include/wx/richtext/richtextctrl.h @@ -1541,7 +1541,7 @@ public: */ virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const { - return GetBuffer().HasCharacterAttributes(range.ToInternal(), style); + return GetFocusObject()->HasCharacterAttributes(range.ToInternal(), style); } /** @@ -1552,7 +1552,7 @@ public: */ virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const { - return GetBuffer().HasParagraphAttributes(range.ToInternal(), style); + return GetFocusObject()->HasParagraphAttributes(range.ToInternal(), style); } /**