previous change to wxImage was wrong, it didn't account for saving same image twice

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2002-02-16 11:37:50 +00:00
parent 528e22936a
commit 36aac19594

View File

@@ -274,6 +274,7 @@ wxImage wxImage::Scale( int width, int height ) const
}
}
#endif
// In case this is a cursor, make sure the hotspot is scalled accordingly:
if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) )
image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X,
@@ -940,8 +941,7 @@ bool wxImage::LoadFile( const wxString& filename, const wxString& mimetype, int
bool wxImage::SaveFile( const wxString& filename, int type ) const
{
#if wxUSE_STREAMS
if ( !HasOption(wxIMAGE_OPTION_FILENAME) )
((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
wxFileOutputStream stream(filename);
@@ -958,8 +958,7 @@ bool wxImage::SaveFile( const wxString& filename, int type ) const
bool wxImage::SaveFile( const wxString& filename, const wxString& mimetype ) const
{
#if wxUSE_STREAMS
if ( !HasOption(wxIMAGE_OPTION_FILENAME) )
((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
wxFileOutputStream stream(filename);