Don't use void for functions without arguments

This commit is contained in:
Artur Wieczorek
2019-10-02 20:40:51 +02:00
parent c7643cefe0
commit 42ed52aec8
6 changed files with 21 additions and 21 deletions

View File

@@ -40,7 +40,7 @@ class WXDLLIMPEXP_CORE wxMetafile : public wxGDIObject
{
public:
wxMetafile(const wxString& file = wxEmptyString);
virtual ~wxMetafile(void);
virtual ~wxMetafile();
// After this is called, the metafile cannot be used for anything
// since it is now owned by the clipboard.
@@ -77,7 +77,7 @@ public:
virtual wxMetafile *Close();
// Implementation
wxMetafile *GetMetaFile(void) const { return m_metaFile; }
wxMetafile *GetMetaFile() const { return m_metaFile; }
void SetMetaFile(wxMetafile *mf) { m_metaFile = mf; }
protected: