Kaydet (Commit) dca94d10 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

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
üst ff95bd4f
......@@ -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;
}
......
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