Looks like we can just as well use ADORecordset here

...instead of _ADORecordset, to make this consistent with the reset of the
ADO driver code.  (Appears the former is a #define for the latter.)

Change-Id: I0b2d89e4483cf7f441df2cf2ceef7bfd37866cf9
This commit is contained in:
Stephan Bergmann 2017-09-19 09:32:23 +02:00
parent ff95bd4f88
commit dca94d10c8

View File

@ -104,7 +104,7 @@ bool WpADOConnection::Execute(const OUString& CommandText,OLEVariant& RecordsAff
{
assert(pInterface);
OLEString sStr1(CommandText);
bool bErg = SUCCEEDED(pInterface->Execute(sStr1.asBSTR(),&RecordsAffected,Options,reinterpret_cast<_ADORecordset**>(ppiRset)));
bool bErg = SUCCEEDED(pInterface->Execute(sStr1.asBSTR(),&RecordsAffected,Options,reinterpret_cast<ADORecordset**>(ppiRset)));
return bErg;
}