~mmach/netext73/wxwidgets3.0

« back to all changes in this revision

Viewing changes to include/wx/bitmap.h

  • Committer: mmach
  • Date: 2020-06-26 06:45:45 UTC
  • Revision ID: netbit73@gmail.com-20200626064545-f93leu8gg98o2ojg
3.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
public:
98
98
    // Create a new wxBitmap from the PNG data in the given buffer.
99
99
    static wxBitmap NewFromPNGData(const void* data, size_t size);
 
100
 
 
101
#ifdef __VISUALC6__
 
102
    // Work around compiler bug with incorrect wxBitmap size, see #18453.
 
103
    char wxDummyVC6Fix;
 
104
#endif // __VISUALC6__
100
105
};
101
106
 
102
107