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:
@@ -576,8 +576,8 @@ public:
|
||||
to each filter. This can be used to determine the type to pass to LoadFile()
|
||||
given a selected filter.
|
||||
*/
|
||||
wxString GetExtWildcard(bool combine = false, bool save = false,
|
||||
wxArrayInt* types = NULL);
|
||||
static wxString GetExtWildcard(bool combine = false, bool save = false,
|
||||
wxArrayInt* types = NULL);
|
||||
|
||||
/**
|
||||
Returns the list of file handlers.
|
||||
@@ -623,8 +623,8 @@ public:
|
||||
changed to bold because this is already specified by the paragraph.
|
||||
However the text colour attributes @e will be changed to show red.
|
||||
*/
|
||||
bool GetStyleForRange(const wxRichTextRange& range,
|
||||
wxTextAttr& style);
|
||||
virtual bool GetStyleForRange(const wxRichTextRange& range,
|
||||
wxTextAttr& style);
|
||||
|
||||
/**
|
||||
Returns the current style sheet associated with the buffer, if any.
|
||||
|
@@ -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.
|
||||
|
@@ -79,8 +79,8 @@ public:
|
||||
This is a static function that can be used to delete the saved locations
|
||||
from an earlier operation, for example after the user has viewed the HTML file.
|
||||
*/
|
||||
bool DeleteTemporaryImages(int flags,
|
||||
const wxArrayString& imageLocations);
|
||||
static bool DeleteTemporaryImages(int flags,
|
||||
const wxArrayString& imageLocations);
|
||||
|
||||
/**
|
||||
Saves the buffer content to the HTML stream.
|
||||
|
@@ -211,8 +211,8 @@ public:
|
||||
/**
|
||||
Gets the page information.
|
||||
*/
|
||||
void GetPageInfo(int* minPage, int* maxPage, int* selPageFrom,
|
||||
int* selPageTo);
|
||||
virtual void GetPageInfo(int* minPage, int* maxPage, int* selPageFrom,
|
||||
int* selPageTo);
|
||||
|
||||
/**
|
||||
Returns a pointer to the buffer being rendered.
|
||||
|
@@ -480,7 +480,7 @@ public:
|
||||
included in the result.
|
||||
*/
|
||||
wxTextAttr GetCombinedStyle(int indent,
|
||||
wxRichTextStyleSheet* styleSheet = NULL) const;
|
||||
wxRichTextStyleSheet* styleSheet = NULL);
|
||||
|
||||
/**
|
||||
This function combines the list style's base attributes and the style for the
|
||||
|
Reference in New Issue
Block a user