From ad6ce5e938ce9d78bed9ce6dead5fa087de49c63 Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Fri, 13 Jan 2012 19:13:55 -0200 Subject: Fix for fdo43460 Part XXXVII getLength() to isEmpty() Part XXXVII Modules svtools --- svtools/source/svhtml/htmlout.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svtools/source/svhtml') diff --git a/svtools/source/svhtml/htmlout.cxx b/svtools/source/svhtml/htmlout.cxx index 5a25a21397cf..3ba059030387 100644 --- a/svtools/source/svhtml/htmlout.cxx +++ b/svtools/source/svhtml/htmlout.cxx @@ -559,7 +559,7 @@ SvStream& HTMLOutFuncs::FlushToAscii( SvStream& rStream, { rtl::OString sOut = lcl_FlushToAscii( rContext ); - if (sOut.getLength()) + if (!sOut.isEmpty()) rStream << sOut.getStr(); return rStream; -- cgit