Kaydet (Commit) 58f6e2ec authored tarafından Matúš Kukan's avatar Matúš Kukan

loplugin:stringconstant

Change-Id: Iafe0c422f8681bd2ed5b825af180facb59aaf531
üst 6b575298
......@@ -3396,7 +3396,7 @@ IMPL_LINK_TYPED( SvxToolbarConfigPage, EntrySelectHdl, MenuButton *, pButton, vo
if ( pNameDialog->Execute() == RET_OK ) {
pNameDialog->GetName(aNewName);
if( aNewName == "" ) //tdf#80758 - Accelerator character ("~") is passed as
if( aNewName.isEmpty() ) //tdf#80758 - Accelerator character ("~") is passed as
pEntry->SetName( "~" ); // the button name in case of empty values.
else
pEntry->SetName( aNewName );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment