For questions like this concerning the OOo API I guess you can find more help over at [EMAIL PROTECTED]

-Stephan

Mikaël De Bie wrote:
Hi everybody,

I'm writing a calc add-in. I've made a function that returns an OUString. I've also made a function that takes a Sequence< Sequence < OUString >> object as argument and then return this object.

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, "..." appears as result for the two of them.

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]

Reply via email to