summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
cc8cc54)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28342
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- static void AddFile(const wxString& filename, wxImage& image, long type);
+ static void AddFile(const wxString& filename,
+ const wxImage& image,
+ long type);
static void AddFile(const wxString& filename,
const wxBitmap& bitmap,
static void AddFile(const wxString& filename,
const wxBitmap& bitmap,
#if wxUSE_IMAGE
/*static*/ void
#if wxUSE_IMAGE
/*static*/ void
-wxMemoryFSHandler::AddFile(const wxString& filename, wxImage& image, long type)
+wxMemoryFSHandler::AddFile(const wxString& filename,
+ const wxImage& image,
+ long type)
{
if (!CheckHash(filename)) return;
{
if (!CheckHash(filename)) return;
-/*static*/ void wxMemoryFSHandler::AddFile(const wxString& filename, const wxBitmap& bitmap, long type)
+/*static*/ void
+wxMemoryFSHandler::AddFile(const wxString& filename,
+ const wxBitmap& bitmap,
+ long type)
{
wxImage img = bitmap.ConvertToImage();
AddFile(filename, img, type);
{
wxImage img = bitmap.ConvertToImage();
AddFile(filename, img, type);