On Fri, Apr 06, 2012 at 09:15:41AM -0300, Olivier Hallot <olivier.hallot at alta.org.br> wrote:
> Also, please confirm if I get it right:
>
> - rtl::OUString aOUstring = OUString("foo");
> + rtl::OUString aOUString = "foo";
Or even, the shorter and more C++-ish:
rtl::OUString aOUString("foo");