Commit 78ba84e3 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msado15: Correct logic when setting field value.

parent 8e9c6e29
......@@ -299,7 +299,7 @@ static HRESULT WINAPI field_put_Value( Field *iface, VARIANT val )
field->recordset->data[row * col_count + col] = copy;
if (field->recordset->editmode != adEditNone)
if (field->recordset->editmode == adEditNone)
field->recordset->editmode = adEditInProgress;
return S_OK;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment