Little bug in TWBrowse
Posted: Wed Feb 08, 2006 4:56 pm
In the function wBrwLine() there are
hOld = SelectObject( hBrush )
and
SelectObject( hOld )
while they should be
hOld = SelectObject( hDC, hBrush )
and
SelectObject( hDC, hOld )
EMG
hOld = SelectObject( hBrush )
and
SelectObject( hOld )
while they should be
hOld = SelectObject( hDC, hBrush )
and
SelectObject( hDC, hOld )
EMG