Re: [PATCH] replace (Xub)String with OUString in vcl

2013-02-06 Thread Eike Rathke
Hi Christina, On Wednesday, 2013-02-06 13:44:09 +0100, Christina Roßmanith wrote: > >>>-for (xub_StrLen i = (xub_StrLen)(aStr.Len()-1); i > 0; > >>>i++ ) > >>>+for (sal_Int32 i = aStr.getLength()-1; i > 0; i++ ) > >>> { > >>>-i

Re: [PATCH] replace (Xub)String with OUString in vcl

2013-02-06 Thread Christina Roßmanith
Hi Eike, Am 06.02.2013 13:38, schrieb Eike Rathke: Hi Christina, On Wednesday, 2013-02-06 12:36:33 +0100, Christina Roßmanith wrote: -for (xub_StrLen i = (xub_StrLen)(aStr.Len()-1); i > 0; i++ ) +for (sal_Int32 i = aStr.getLength()-1; i > 0; i++ )

Re: [PATCH] replace (Xub)String with OUString in vcl

2013-02-06 Thread Eike Rathke
Hi Christina, On Wednesday, 2013-02-06 12:36:33 +0100, Christina Roßmanith wrote: > >-for (xub_StrLen i = (xub_StrLen)(aStr.Len()-1); i > 0; i++ ) > >+for (sal_Int32 i = aStr.getLength()-1; i > 0; i++ ) > > { > >-if ( (aStr.GetC

Re: [PATCH] replace (Xub)String with OUString in vcl

2013-02-06 Thread Christina Roßmanith
Hi, when changing (Xub)String to OUString I came across a strange for-loop. You find it at the end of the quotation. I've kept some context... (continue below the quotation) diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx index 387acea..e632b4a 100644 --- a/vcl/source/