* BUG: Fix SerialPort.DTR property.


git-svn-id: svn://localhost/gambas/trunk@6804 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2015-01-04 02:19:34 +00:00
parent e624fc7361
commit 77670873a1

View file

@ -359,7 +359,7 @@ BEGIN_PROPERTY(SerialPort_DTR)
else
{
THIS->signals = get_signals(THIS);
GB.ReturnBoolean(THIS->signals.DSR);
GB.ReturnBoolean(THIS->signals.DTR);
}
}
else