GdiplusStartup() takes ULONG_PTR, not DWORD (patch 1596318); also deTABified

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-11-14 14:05:14 +00:00
parent 5bbdfd5ba2
commit cb3a0d420a

View File

@ -1212,7 +1212,7 @@ public :
wxGDIPlusRenderer()
{
m_loaded = false;
m_gditoken = NULL;
m_gditoken = 0;
}
virtual ~wxGDIPlusRenderer()
@ -1269,7 +1269,7 @@ protected :
private :
bool m_loaded;
DWORD m_gditoken;
ULONG_PTR m_gditoken;
DECLARE_DYNAMIC_CLASS_NO_COPY(wxGDIPlusRenderer)
} ;