]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/metafile.cpp
Enable variadic macros for VC9 and later.
[wxWidgets.git] / src / msw / metafile.cpp
index e20f24a5b473afd7879a7c5dd9057df4191e3515..843983b43a5cec51de4e58455596cb2ff1dbd98e 100644 (file)
@@ -177,13 +177,13 @@ wxMetafileDCImpl::wxMetafileDCImpl(wxDC *owner, const wxString& file)
     m_maxY = -10000;
     //  m_title = NULL;
 
-    if (!file.IsNull() && wxFileExists(file))
+    if ( wxFileExists(file) )
         wxRemoveFile(file);
 
-    if (!file.IsNull() && (file != wxEmptyString))
-        m_hDC = (WXHDC) CreateMetaFile(file);
-    else
+    if ( file.empty() )
         m_hDC = (WXHDC) CreateMetaFile(NULL);
+    else
+        m_hDC = (WXHDC) CreateMetaFile(file);
 
     m_ok = (m_hDC != (WXHDC) 0) ;