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:
parent
ebc0b15552
commit
9daaea2854
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user