Fix inconsistent function declarations in documentation

Mostly remove the virtual keyword where the actual implementation isn't
virtual.
This commit is contained in:
Scott Talbert
2019-03-22 00:29:40 -04:00
parent 8042648c73
commit ac18cfe7cc
5 changed files with 9 additions and 9 deletions

View File

@@ -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:
/** /**

View File

@@ -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.

View File

@@ -367,15 +367,15 @@ 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;
/** /**
Returns current platform-specific locale name as passed to setlocale(). Returns current platform-specific locale name as passed to setlocale().

View File

@@ -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

View File

@@ -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