Use wxFileInputStream if wxFFileInputStream is not available.

Closes #11068.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61609 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-08-05 17:24:22 +00:00
parent ce0822e1b9
commit c7f171ed4d

View File

@@ -156,7 +156,11 @@ void wxIconBundle::AddIcon(const wxString& file, wxBitmapType type)
}
#endif // __WXMAC__
#if wxUSE_FFILE
wxFFileInputStream stream(file);
#elif wxUSE_FILE
wxFileInputStream stream(file);
#endif
DoAddIcon
(
*this,