Thanks for all your relevant answers and wiki updates.<br>I understand the goal is to replace String and its variants by OUString.<br><br>My last remaining question is "what is the use of OString? Where/when is it used in the application?"<br>

<br>Thanks,<br>Jean-Noël<br><br><br><br><div class="gmail_quote">2013/1/15 Norbert Thiebaud <span dir="ltr"><<a href="mailto:nthiebaud@gmail.com" target="_blank">nthiebaud@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="im">On Tue, Jan 15, 2013 at 12:26 PM, Eike Rathke <<a href="mailto:erack@redhat.com">erack@redhat.com</a>> wrote:<br>
><br>
> For example, a<br>
><br>
>     if (String.Search(...) == STRING_NOTFOUND)<br>
><br>
> replaced with<br>
><br>
>     if (OUString.indexOf(...) == STRING_NOTFOUND)<br>
><br>
> will not work.<br>
<br>
</div>A even more tricky case is this:<br>
<br>
String's functions usually deal silently with out-of-buffer<br>
stituations, like asking to delete a part that overflow or even is<br>
entirely outside a string.<br>
and Search return as indicated above STRING_NOTFOUND that is 0xffff<br>
i.e the max unsigned value of Xub_StrLen<br>
<br>
so some code use this 'feature' to code something like:<br>
<br>
pos=String.Search('#')<br>
String.Erase(pos)<br>
<br>
IOW: automated conversion is _not_ an option. String => OUString<br>
convertion have to be carefully audited by hand, even if 99% of these<br>
are trivial.<br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
Norbert<br>
</font></span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
LibreOffice mailing list<br>
<a href="mailto:LibreOffice@lists.freedesktop.org">LibreOffice@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/libreoffice" target="_blank">http://lists.freedesktop.org/mailman/listinfo/libreoffice</a><br>
</div></div></blockquote></div><br>