From 711752a98a373778aca8044406d6f08ebd2aeb9a Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sun, 20 Sep 2015 16:18:39 +0300 Subject: WaE: rewrite as call of rtl::OUString::isEmpty Change-Id: I7c172d26707d08a438be059648f64b5b5959bacc --- editeng/source/outliner/overflowingtxt.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editeng/source/outliner/overflowingtxt.cxx b/editeng/source/outliner/overflowingtxt.cxx index 2b5b13a07583..6f2967c3c87e 100644 --- a/editeng/source/outliner/overflowingtxt.cxx +++ b/editeng/source/outliner/overflowingtxt.cxx @@ -46,7 +46,7 @@ OutlinerParaObject *TextChainingUtils::JuxtaposeParaObject( // Special case: if only empty text remove it at the end bool bOnlyOneEmptyPara = !pNextPObj || (pOutl->GetParagraphCount() == 1 && - pNextPObj->GetTextObject().GetText(0) == ""); + pNextPObj->GetTextObject().GetText(0).isEmpty()); EditEngine &rEditEngine = const_cast(pOutl->GetEditEngine()); -- cgit