Fix inconsistent function declarations in documentation
Mostly remove the virtual keyword where the actual implementation isn't virtual.
This commit is contained in:
@@ -59,7 +59,7 @@ public:
|
|||||||
Assigns @a parser to this handler. Each @b instance of handler
|
Assigns @a parser to this handler. Each @b instance of handler
|
||||||
is guaranteed to be called only from the one parser.
|
is guaranteed to be called only from the one parser.
|
||||||
*/
|
*/
|
||||||
virtual void SetParser(wxHtmlWinParser* parser);
|
virtual void SetParser(wxHtmlParser* parser);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/**
|
/**
|
||||||
|
@@ -227,7 +227,7 @@ public:
|
|||||||
for which this function returns the number of frames in the
|
for which this function returns the number of frames in the
|
||||||
animation).
|
animation).
|
||||||
*/
|
*/
|
||||||
virtual int GetImageCount(wxInputStream& stream);
|
int GetImageCount(wxInputStream& stream);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Gets the MIME type associated with this handler.
|
Gets the MIME type associated with this handler.
|
||||||
|
@@ -367,13 +367,13 @@ public:
|
|||||||
/**
|
/**
|
||||||
Calls wxGetTranslation(const wxString&, const wxString&).
|
Calls wxGetTranslation(const wxString&, const wxString&).
|
||||||
*/
|
*/
|
||||||
virtual const wxString& GetString(const wxString& origString,
|
const wxString& GetString(const wxString& origString,
|
||||||
const wxString& domain = wxEmptyString) const;
|
const wxString& domain = wxEmptyString) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Calls wxGetTranslation(const wxString&, const wxString&, unsigned, const wxString&).
|
Calls wxGetTranslation(const wxString&, const wxString&, unsigned, const wxString&).
|
||||||
*/
|
*/
|
||||||
virtual const wxString& GetString(const wxString& origString,
|
const wxString& GetString(const wxString& origString,
|
||||||
const wxString& origString2, unsigned n,
|
const wxString& origString2, unsigned n,
|
||||||
const wxString& domain = wxEmptyString) const;
|
const wxString& domain = wxEmptyString) const;
|
||||||
|
|
||||||
|
@@ -262,7 +262,7 @@ public:
|
|||||||
|
|
||||||
@since 2.9.2
|
@since 2.9.2
|
||||||
*/
|
*/
|
||||||
virtual void InitializeWithModality(wxPreviewFrameModalityKind kind);
|
void InitializeWithModality(wxPreviewFrameModalityKind kind);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Enables any disabled frames in the application, and deletes the print preview
|
Enables any disabled frames in the application, and deletes the print preview
|
||||||
|
@@ -691,7 +691,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
Returns @true if property is selected.
|
Returns @true if property is selected.
|
||||||
*/
|
*/
|
||||||
virtual bool IsPropertySelected( wxPGPropArg id ) const;
|
bool IsPropertySelected( wxPGPropArg id ) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns @true if property is shown (i.e. HideProperty() with @true not
|
Returns @true if property is shown (i.e. HideProperty() with @true not
|
||||||
|
Reference in New Issue
Block a user