eVC3 (older WinCE) build fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38968 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1745,9 +1745,11 @@ void wxDC::DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y,
|
|||||||
wxLogLastError(_T("GetTextExtentPoint32()"));
|
wxLogLastError(_T("GetTextExtentPoint32()"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if !defined(_WIN32_WCE) || (_WIN32_WCE >= 400)
|
||||||
// the result computed by GetTextExtentPoint32() may be too small as it
|
// the result computed by GetTextExtentPoint32() may be too small as it
|
||||||
// accounts for under/overhang of the first/last character while we want
|
// accounts for under/overhang of the first/last character while we want
|
||||||
// just the bounding rect for this string so adjust the width as needed
|
// just the bounding rect for this string so adjust the width as needed
|
||||||
|
// (using API not available in 2002 SDKs of WinCE)
|
||||||
if ( len > 0 )
|
if ( len > 0 )
|
||||||
{
|
{
|
||||||
ABC width;
|
ABC width;
|
||||||
@@ -1769,6 +1771,7 @@ void wxDC::DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y,
|
|||||||
}
|
}
|
||||||
//else: GetCharABCWidths() failed, not a TrueType font?
|
//else: GetCharABCWidths() failed, not a TrueType font?
|
||||||
}
|
}
|
||||||
|
#endif // !defined(_WIN32_WCE) || (_WIN32_WCE >= 400)
|
||||||
|
|
||||||
TEXTMETRIC tm;
|
TEXTMETRIC tm;
|
||||||
::GetTextMetrics(GetHdc(), &tm);
|
::GetTextMetrics(GetHdc(), &tm);
|
||||||
|
Reference in New Issue
Block a user