Re: [OS/2 and macOS] saving ODS with chart

2021-08-25 Thread Matthias Seidel
Hi all,

Am 06.08.21 um 12:26 schrieb Arrigo Marchiori:
> Hello Jim, All,
>
>
> On Thu, Aug 05, 2021 at 01:41:23PM -0400, Jim Jagielski wrote:
>
>> Never mind that one: This one is the one: THX!
> it still does not work, unfortunately. Quoting the rest for
> completeness.

Any ideas?

A fix would be great for OS/2.

Regards,

   Matthias

>
>> diff --git a/main/comphelper/inc/comphelper/extract.hxx 
>> b/main/comphelper/inc/comphelper/extract.hxx
>> index dc67c5dc58..fc75fa9cb9 100644
>> --- a/main/comphelper/inc/comphelper/extract.hxx
>> +++ b/main/comphelper/inc/comphelper/extract.hxx
>> @@ -131,9 +131,10 @@ inline sal_Bool SAL_CALL extractInterface(
>>  inline sal_Bool SAL_CALL any2bool( const ::com::sun::star::uno::Any & rAny )
>>  throw( ::com::sun::star::lang::IllegalArgumentException )
>>  {
>> -if (rAny.getValueTypeClass() == 
>> ::com::sun::star::uno::TypeClass_BOOLEAN)
>> +sal_Bool sValue;
>> +if ( rAny >>= sValue)
>>  {
>> -return *(sal_Bool *)rAny.getValue();
>> +return sValue;
>>  }
>>  else
>>  {
>> diff --git a/main/cppu/inc/com/sun/star/uno/Any.hxx 
>> b/main/cppu/inc/com/sun/star/uno/Any.hxx
>> index e1d125be82..2a38598efa 100644
>> --- a/main/cppu/inc/com/sun/star/uno/Any.hxx
>> +++ b/main/cppu/inc/com/sun/star/uno/Any.hxx
>> @@ -251,9 +251,9 @@ inline sal_Bool SAL_CALL operator >>= ( Any const & 
>> rAny, bool & value )
>>  {
>>  value = *reinterpret_cast< sal_Bool const * >(
>>   ) != sal_False;
>> -return true;
>> +return sal_True;
>>  }
>> -return false;
>> +return sal_False;
>>  }
>>  
>>  
>> //__
>> diff --git a/main/starmath/source/mathmlexport.cxx 
>> b/main/starmath/source/mathmlexport.cxx
>> index 3f36ff152d..00b301d0eb 100644
>> --- a/main/starmath/source/mathmlexport.cxx
>> +++ b/main/starmath/source/mathmlexport.cxx
>> @@ -169,9 +169,7 @@ sal_Bool SmXMLExportWrapper::Export(SfxMedium )
>>  SvtSaveOptions aSaveOpt;
>>  OUString 
>> sUsePrettyPrinting(RTL_CONSTASCII_USTRINGPARAM("UsePrettyPrinting"));
>>  sal_Bool bUsePrettyPrinting( bFlat || aSaveOpt.IsPrettyPrinting() );
>> -Any aAny;
>> -aAny.setValue( , ::getBooleanCppuType() );
>> -xInfoSet->setPropertyValue( sUsePrettyPrinting, aAny );
>> +xInfoSet->setPropertyValue( sUsePrettyPrinting, 
>> uno::makeAny(bUsePrettyPrinting));
>>  
>>  // Set base URI
>>  OUString sPropName( RTL_CONSTASCII_USTRINGPARAM("BaseURI") );
>> diff --git a/main/sw/source/filter/xml/wrtxml.cxx 
>> b/main/sw/source/filter/xml/wrtxml.cxx
>> index e288bfc006..7677f86ff1 100644
>> --- a/main/sw/source/filter/xml/wrtxml.cxx
>> +++ b/main/sw/source/filter/xml/wrtxml.cxx
>> @@ -207,8 +207,7 @@ pGraphicHelper = SvXMLGraphicHelper::Create( xStg,
>>  SvtSaveOptions aSaveOpt;
>>  OUString 
>> sUsePrettyPrinting(RTL_CONSTASCII_USTRINGPARAM("UsePrettyPrinting"));
>>  sal_Bool bUsePrettyPrinting( aSaveOpt.IsPrettyPrinting() );
>> -aAny.setValue( , ::getBooleanCppuType() );
>> -xInfoSet->setPropertyValue( sUsePrettyPrinting, aAny );
>> +xInfoSet->setPropertyValue( sUsePrettyPrinting, 
>> uno::makeAny(bUsePrettyPrinting));
>>  
>>  // save show redline mode ...
>>  OUString sShowChanges(RTL_CONSTASCII_USTRINGPARAM("ShowChanges"));
> Best regards,



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Diference between AOO_4.5.0 and AOO_4.2.0 in Debian 9.

2021-08-25 Thread Dave Fisher



> On Aug 25, 2021, at 11:09 AM, Delio Orozco Gonzalez 
>  wrote:
> 
> Hello Matthias:
> 
> I just tried the version of AOO 4.5.0_en_US. I did not compile it, I 
> downloaded it from: 
> 
> https://ci.apache.org/projects/openoffice/install/linux64/Apache_OpenOffice_4.5.0_Linux_x86-64_install-deb_en-US_2021-08-24_04%3A14%3A06_8927ee86bef23fd08661b88a59493a46e7017564.tar.gz

FYI - The CI nightly builds are about to be migrated to an updated buildbot by 
Infra and locations will change. I suggest that unless the fix is easy that it 
be deferred until the Infra migration is complete.

Regards,
Dave

> 
> I downloaded version 4.2.0_es from:
> 
> https://dist.apache.org/repos/dist/dev/openoffice/4.2.0-Dev3/binaries/es/Apache_OpenOffice_4.2.0_Linux_x86_install-deb_es.tar.gz
> 
> Regards,
> 
> Delio.
> 
> - Mensaje original -
> De: "Matthias Seidel" 
> Para: "dev" 
> Enviados: Lunes, 23 de Agosto 2021 11:36:47
> Asunto: Re: Diference between AOO_4.5.0 and AOO_4.2.0 in Debian 9.
> 
> Hi Delio,
> 
> Am 23.08.21 um 02:23 schrieb Delio Orozco Gonzalez:
>> Hi Matthias:
>> 
>> I download AOO-4.5.0 from:
>> 
>> https://ci.apache.org/projects/openoffice/install/linux64/
> 
> I thought about the 4.2.0 version. Did you build it yourself? Did you
> test "en-US" instead of "es"?
> 
> What is your Operating System?
> 
> We need some more details, I guess.
> 
> Regards,
> 
>Matthias
> 
>> 
>> Regards,
>> 
>> Delio.
>> 
>> - Mensaje original -
>> De: "Matthias Seidel" 
>> Para: "dev" 
>> Enviados: Domingo, 22 de Agosto 2021 17:49:28
>> Asunto: Re: Diference between AOO_4.5.0 and AOO_4.2.0 in Debian 9.
>> 
>> Hi Delio,
>> 
>> Am 22.08.21 um 17:23 schrieb Delio Orozco Gonzalez:
>>> Hi all: 
>>> 
>>> Apache_OpenOffice_4.5.0_Linux_x86-64_install-deb_en-US_2021-08-22_04:14:26 
>>> still does not work in Debian 9, unlike 
>>> Apache_OpenOffice_4.2.0_Linux_x86-64_install-deb_es.tar that works without 
>>> any problem. 
>> Where did you get the TAR from?!
>> 
>> Regards,
>> 
>>Matthias
>> 
>>> Regards, 
>>> 
>>> Delio. 
>>> 
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Diference between AOO_4.5.0 and AOO_4.2.0 in Debian 9.

2021-08-25 Thread Delio Orozco Gonzalez
Hello Matthias:

I just tried the version of AOO 4.5.0_en_US. I did not compile it, I downloaded 
it from: 

https://ci.apache.org/projects/openoffice/install/linux64/Apache_OpenOffice_4.5.0_Linux_x86-64_install-deb_en-US_2021-08-24_04%3A14%3A06_8927ee86bef23fd08661b88a59493a46e7017564.tar.gz

I downloaded version 4.2.0_es from:

https://dist.apache.org/repos/dist/dev/openoffice/4.2.0-Dev3/binaries/es/Apache_OpenOffice_4.2.0_Linux_x86_install-deb_es.tar.gz

Regards,

Delio.

- Mensaje original -
De: "Matthias Seidel" 
Para: "dev" 
Enviados: Lunes, 23 de Agosto 2021 11:36:47
Asunto: Re: Diference between AOO_4.5.0 and AOO_4.2.0 in Debian 9.

Hi Delio,

Am 23.08.21 um 02:23 schrieb Delio Orozco Gonzalez:
> Hi Matthias:
>
> I download AOO-4.5.0 from:
>
> https://ci.apache.org/projects/openoffice/install/linux64/

I thought about the 4.2.0 version. Did you build it yourself? Did you
test "en-US" instead of "es"?

What is your Operating System?

We need some more details, I guess.

Regards,

   Matthias

>
> Regards,
>
> Delio.
>
> - Mensaje original -
> De: "Matthias Seidel" 
> Para: "dev" 
> Enviados: Domingo, 22 de Agosto 2021 17:49:28
> Asunto: Re: Diference between AOO_4.5.0 and AOO_4.2.0 in Debian 9.
>
> Hi Delio,
>
> Am 22.08.21 um 17:23 schrieb Delio Orozco Gonzalez:
>> Hi all: 
>>
>> Apache_OpenOffice_4.5.0_Linux_x86-64_install-deb_en-US_2021-08-22_04:14:26 
>> still does not work in Debian 9, unlike 
>> Apache_OpenOffice_4.2.0_Linux_x86-64_install-deb_es.tar that works without 
>> any problem. 
> Where did you get the TAR from?!
>
> Regards,
>
>    Matthias
>
>> Regards, 
>>
>> Delio. 
>>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org