]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/enhmeta.cpp
Fix compilation of newly added msw/evtloopconsole.cpp without PCH.
[wxWidgets.git] / src / msw / enhmeta.cpp
index 5249f46ff49816be0867961ae6fadbf9a65f2581..86e334507afbe86fc391a7bf88ef18c7d2e452cf 100644 (file)
@@ -59,7 +59,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxEnhMetaFile, wxObject)
 
 // we must pass NULL if the string is empty to metafile functions
 static inline const wxChar *GetMetaFileName(const wxString& fn)
-    { return !fn ? (const wxChar *)NULL : (const wxChar*)fn.wx_str(); }
+    { return !fn ? NULL : wxMSW_CONV_LPCTSTR(fn); }
 
 // ============================================================================
 // implementation
@@ -291,7 +291,7 @@ void wxEnhMetaFileDCImpl::Create(HDC hdcRef,
     }
 
     m_hDC = (WXHDC)::CreateEnhMetaFile(hdcRef, GetMetaFileName(filename),
-                                       pRect, description.wx_str());
+                                       pRect, description.t_str());
     if ( !m_hDC )
     {
         wxLogLastError(wxT("CreateEnhMetaFile"));