diff options
author | Noel Grandin <noel@peralex.com> | 2013-07-30 16:50:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-07-31 13:36:52 +0200 |
commit | 43b1ac3651732a1ceb193268ab72b4aaa90dee65 (patch) | |
tree | 19709be5b1bef0d481fdfdc29a69a643815f1621 /svtools | |
parent | 93257759580e6df10cc9eddbf1800a17d61cfc48 (diff) |
convert vcl/menu.hxx from XubString to OUString
Change-Id: I9469363c09e4cc863ad4d8ddddf8d923fe444e25
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/contextmenuhelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/uno/contextmenuhelper.cxx b/svtools/source/uno/contextmenuhelper.cxx index 5a39529a268c..7e48cb396fb1 100644 --- a/svtools/source/uno/contextmenuhelper.cxx +++ b/svtools/source/uno/contextmenuhelper.cxx @@ -588,7 +588,7 @@ ContextMenuHelper::completeMenuProperties( else pMenu->SetItemImage( nId, Image() ); - if ( pMenu->GetItemText( nId ).Len() == 0 ) + if ( pMenu->GetItemText( nId ).isEmpty() ) { OUString aLabel( getLabelFromCommandURL( aCmdURL )); pMenu->SetItemText( nId, aLabel ); |