]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dc.cpp
cleanup of handlers
[wxWidgets.git] / src / msw / dc.cpp
index 86e464506cad2c5edca2fff43352aee87f665a88..63f940e5a9509ebe86f59d486a1268dccc410342 100644 (file)
@@ -1635,7 +1635,7 @@ void wxDC::DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y,
     SIZE sizeRect;
     TEXTMETRIC tm;
 
-    GetTextExtentPoint(GetHdc(), string, string.length(), &sizeRect);
+    ::GetTextExtentPoint32(GetHdc(), string, string.length(), &sizeRect);
     GetTextMetrics(GetHdc(), &tm);
 
     if (x)