git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29915
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void SetHENHMETAFILE(WXHANDLE hMF) { Free(); m_hMF = hMF; }
protected:
- void Init() { m_hMF = 0; }
+ void Init();
void Free();
void Assign(const wxEnhMetaFile& mf);
// wxEnhMetaFile
// ----------------------------------------------------------------------------
+void wxEnhMetaFile::Init()
+{
+ if ( m_filename.empty() )
+ {
+ m_hMF = 0;
+ }
+ else // have valid file name, load metafile from it
+ {
+ m_hMF = GetEnhMetaFile(m_filename);
+ if ( !m_hMF )
+ wxLogSysError(_("Failed to load metafile from file \"%s\"."),
+ m_filename.c_str());
+ }
+}
+
void wxEnhMetaFile::Assign(const wxEnhMetaFile& mf)
{
if ( &mf == this )