]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/gdiplus.cpp
Implement support for gradient stops for OS X.
[wxWidgets.git] / src / msw / gdiplus.cpp
index afdfc003edbb6962c0bba4bec2417b8b92800289..6aca8143bda78dbc2680bed4f8a99ef644be6e20 100644 (file)
@@ -806,7 +806,7 @@ bool wxGdiPlus::DoInit()
     // we're prepared to handler errors so suppress log messages about them
     wxLogNull noLog;
 
-    wxDynamicLibrary dllGdip(_T("gdiplus.dll"), wxDL_VERBATIM);
+    wxDynamicLibrary dllGdip(wxT("gdiplus.dll"), wxDL_VERBATIM);
     if ( !dllGdip.IsLoaded() )
         return false;
 
@@ -817,14 +817,14 @@ bool wxGdiPlus::DoInit()
             return false;
 
     #define wxLOAD_GDIPLUS_FUNC(name, params, args)                           \
-        wxDO_LOAD_FUNC(name, _T("Gdiplus") wxSTRINGIZE_T(name))
+        wxDO_LOAD_FUNC(name, wxT("Gdiplus") wxSTRINGIZE_T(name))
 
     wxFOR_ALL_GDIPLUS_FUNCNAMES(wxLOAD_GDIPLUS_FUNC)
 
     #undef wxLOAD_GDIPLUS_FUNC
 
     #define wxLOAD_GDIP_FUNC(name, params, args)                              \
-        wxDO_LOAD_FUNC(name, _T("Gdip") wxSTRINGIZE_T(name))
+        wxDO_LOAD_FUNC(name, wxT("Gdip") wxSTRINGIZE_T(name))
 
     wxFOR_ALL_GDIP_FUNCNAMES(wxLOAD_GDIP_FUNC)