automated ifacecheck fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-27 21:26:54 +00:00
parent 50ec54b656
commit fadc2df682
33 changed files with 145 additions and 151 deletions

View File

@@ -627,8 +627,7 @@ public:
Helper function for extending the selection, returning @true if the selection
was changed. Selections are in caret positions.
*/
bool ExtendSelection(long oldPosition, long newPosition,
int flags);
virtual bool ExtendSelection(long oldPosition, long newPosition, int flags);
/**
Helper function for finding the caret position for the next word.
@@ -779,8 +778,8 @@ public:
Attributes that differ in value within the range will not be included
in @a style flags.
*/
bool GetStyleForRange(const wxRichTextRange& range,
wxTextAttr& style);
virtual bool GetStyleForRange(const wxRichTextRange& range,
wxTextAttr& style);
/**
Returns the style sheet associated with the control, if any.
@@ -821,8 +820,8 @@ public:
You can use this to implement, for example, bold button updating.
@a style must have flags indicating which attributes are of interest.
*/
bool HasCharacterAttributes(const wxRichTextRange& range,
const wxTextAttr& style) const;
virtual bool HasCharacterAttributes(const wxRichTextRange& range,
const wxTextAttr& style) const;
/**
Test if this whole range has paragraph attributes of the specified kind.
@@ -830,8 +829,8 @@ public:
You can use this to implement, for example, centering button updating.
@a style must have flags indicating which attributes are of interest.
*/
bool HasParagraphAttributes(const wxRichTextRange& range,
const wxTextAttr& style) const;
virtual bool HasParagraphAttributes(const wxRichTextRange& range,
const wxTextAttr& style) const;
/**
Returns @true if there is a selection.