use wxOVERRIDE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -51,11 +51,11 @@ public:
|
||||
}
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
|
||||
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
|
||||
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ) wxOVERRIDE;
|
||||
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ) wxOVERRIDE;
|
||||
|
||||
protected:
|
||||
virtual bool DoCanRead( wxInputStream& stream );
|
||||
virtual bool DoCanRead( wxInputStream& stream ) wxOVERRIDE;
|
||||
bool SaveDib(wxImage *image, wxOutputStream& stream, bool verbose,
|
||||
bool IsBmp, bool IsMask);
|
||||
bool DoLoadDib(wxImage *image, int width, int height, int bpp, int ncolors,
|
||||
@@ -85,13 +85,13 @@ public:
|
||||
}
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
|
||||
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
|
||||
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ) wxOVERRIDE;
|
||||
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ) wxOVERRIDE;
|
||||
virtual bool DoLoadFile( wxImage *image, wxInputStream& stream, bool verbose, int index );
|
||||
|
||||
protected:
|
||||
virtual int DoGetImageCount( wxInputStream& stream );
|
||||
virtual bool DoCanRead( wxInputStream& stream );
|
||||
virtual int DoGetImageCount( wxInputStream& stream ) wxOVERRIDE;
|
||||
virtual bool DoCanRead( wxInputStream& stream ) wxOVERRIDE;
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
private:
|
||||
@@ -120,7 +120,7 @@ public:
|
||||
|
||||
protected:
|
||||
#if wxUSE_STREAMS
|
||||
virtual bool DoCanRead( wxInputStream& stream );
|
||||
virtual bool DoCanRead( wxInputStream& stream ) wxOVERRIDE;
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
private:
|
||||
@@ -143,12 +143,12 @@ public:
|
||||
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
virtual bool SaveFile( wxImage *WXUNUSED(image), wxOutputStream& WXUNUSED(stream), bool WXUNUSED(verbose=true) ){return false ;}
|
||||
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
|
||||
virtual bool SaveFile( wxImage *WXUNUSED(image), wxOutputStream& WXUNUSED(stream), bool WXUNUSED(verbose=true) ) wxOVERRIDE{return false ;}
|
||||
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ) wxOVERRIDE;
|
||||
|
||||
protected:
|
||||
virtual int DoGetImageCount( wxInputStream& stream );
|
||||
virtual bool DoCanRead( wxInputStream& stream );
|
||||
virtual int DoGetImageCount( wxInputStream& stream ) wxOVERRIDE;
|
||||
virtual bool DoCanRead( wxInputStream& stream ) wxOVERRIDE;
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user