From: Vadim Zeitlin Date: Mon, 26 Jun 2006 14:39:56 +0000 (+0000) Subject: allow empty filename in ctor taking the extents X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/800991b674aaf645a619fe5852fbef11369667b2 allow empty filename in ctor taking the extents git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39842 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/metafile.cpp b/src/msw/metafile.cpp index 0092107a7c..f1eb74391e 100644 --- a/src/msw/metafile.cpp +++ b/src/msw/metafile.cpp @@ -189,9 +189,9 @@ wxMetafileDC::wxMetafileDC(const wxString& file, int xext, int yext, int xorg, i m_minY = 10000; m_maxX = -10000; m_maxY = -10000; - if ( !file.empty() && wxFileExists(file)) + if ( !file.empty() && wxFileExists(file) ) wxRemoveFile(file); - m_hDC = (WXHDC) CreateMetaFile(file); + m_hDC = (WXHDC) CreateMetaFile(file.empty() ? NULL : file.c_str()); m_ok = true;