Hi everybody,
I'm writing a calc add-in. I've made a first function that returns an
OUString. I've also made a seond function that takes a Sequence<
Sequence < OUString >> object as argument and then return this object.
What I want to do is use the second function with an array of cells
containing the results of several first function.
My problem is that the second function works fine only when only one
cell is selected as parameter. If I select an array of two cell or more,
"..." appears as result
Here is the methods :
First one :
OUString SolverServiceImpl::methodLEQ(
Sequence< Sequence< double > > const & constList,
OUString const & rhs)
throw (RuntimeException)
{
return rhs;
}
Seconde one:
Sequence< Sequence< OUString > > SolverServiceImpl::methodCSP(
Sequence< Sequence< OUString > > const & constStringList,
Sequence< Sequence< double > > const & costList,
OUString const & goal )
throw (RuntimeException)
{
return constStringList;
}
Can anybody tell me how to fix this problem ?
Thanks in advance,
Mikaël
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]