Replace list by vector in incomingrequest (binaryurp)
Change-Id: Ic08f45f614cfa4643b55142e85e8eeac223abd82 Reviewed-on: https://gerrit.libreoffice.org/44893 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
parent
b469ba0e76
commit
d3c607b4bb
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ bool IncomingRequest::execute_throw(
|
|||
{
|
||||
assert(object_.is());
|
||||
css::uno::TypeDescription retType;
|
||||
std::list< std::vector< char > > outBufs;
|
||||
std::vector< std::vector< char > > outBufs;
|
||||
std::vector< void * > args;
|
||||
switch (member_.get()->eTypeClass) {
|
||||
case typelib_TypeClass_INTERFACE_ATTRIBUTE:
|
||||
|
@ -257,7 +257,7 @@ bool IncomingRequest::execute_throw(
|
|||
typelib_InterfaceMethodTypeDescription * >(
|
||||
member_.get());
|
||||
std::vector< BinaryAny >::iterator i(outArguments->begin());
|
||||
std::list< std::vector< char > >::iterator j(
|
||||
std::vector< std::vector< char > >::iterator j(
|
||||
outBufs.begin());
|
||||
for (sal_Int32 k = 0; k != mtd->nParams; ++k) {
|
||||
if (mtd->pParams[k].bOut) {
|
||||
|
|
Loading…
Reference in a new issue