summaryrefslogtreecommitdiff
path: root/sw/source/ui/envelp/labelexp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/envelp/labelexp.cxx')
-rw-r--r--sw/source/ui/envelp/labelexp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/envelp/labelexp.cxx b/sw/source/ui/envelp/labelexp.cxx
index e8b4b8959f29..8a384ed13fd4 100644
--- a/sw/source/ui/envelp/labelexp.cxx
+++ b/sw/source/ui/envelp/labelexp.cxx
@@ -111,7 +111,7 @@ void SwVisitingCardPage::InitFrameControl()
IMPL_LINK_NOARG(SwVisitingCardPage, FrameControlInitializedHdl)
{
SvTreeListEntry* pSel = m_pAutoTextLB->FirstSelected();
- String sEntry;
+ OUString sEntry;
if( pSel )
sEntry = *(String*)pSel->GetUserData();
uno::Reference< text::XTextCursor > & xCrsr = pExampleFrame->GetTextCursor();
@@ -125,7 +125,7 @@ IMPL_LINK_NOARG(SwVisitingCardPage, FrameControlInitializedHdl)
uno::Reference< text::XAutoTextGroup > xGroup;
aGroup >>= xGroup;
- if( sEntry.Len() && xGroup->hasByName( uEntry ) )
+ if( !sEntry.isEmpty() && xGroup->hasByName( uEntry ) )
{
uno::Any aEntry(xGroup->getByName(uEntry));
uno::Reference< text::XAutoTextEntry > xEntry;