Re: [Libreoffice] [PATCH] ure/sal/inc/rtl/ustring.hxx - new method isEmpty()

2011-02-03 Thread Thomas Arnhold
Hi, as I understand this, it would be nice to have this method in OString, too. I've attached the patch. Thomas On 01/21/2011 05:55 PM, Michael Meeks wrote: Hi Thomas, On Fri, 2011-01-21 at 13:52 +0100, Thomas Arnhold wrote: New method: isEmpty() - Checks if a string is empty. I

[Libreoffice] [PATCH] ure/sal/inc/rtl/ustring.hxx - new method isEmpty()

2011-01-21 Thread Thomas Arnhold
Hi folks, what do you think about this idea: New method: isEmpty() - Checks if a string is empty. This could simplify logics in the source. Now this test is done like 'if (aStr.getLength() != 0) {...}' or 'if (!aStr.getLength()) {...}'. With isEmpty() this looks like: if (aStr.isEmpty()) {...}

Re: [Libreoffice] [PATCH] ure/sal/inc/rtl/ustring.hxx - new method isEmpty()

2011-01-21 Thread Michael Meeks
Hi Thomas, On Fri, 2011-01-21 at 13:52 +0100, Thomas Arnhold wrote: New method: isEmpty() - Checks if a string is empty. I like it. There are lots of use-cases that we need to get into sal: that we sadly don't have at the moment: to make writing code easier and less