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
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++ )
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
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/