undid signed/unsigned warning fix of rev 1.73 as the type of wxString::iterator::operator-() is now signed again

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-04-09 12:21:51 +00:00
parent ebc0b15552
commit 9daaea2854

View File

@ -689,7 +689,7 @@ void wxDCBase::DrawLabel(const wxString& text,
}
else // not end of line
{
if ( pc - text.begin() == (size_t)indexAccel )
if ( pc - text.begin() == indexAccel )
{
// remeber to draw underscore here
GetTextExtent(curLine, &startUnderscore, NULL);