Fix Bug 310807 - "Rename" action missing in identity context menu

FIXED-IN: 4.10
BUG: 310807
wilder-work
Montel Laurent 13 years ago
parent 2b8af37b22
commit f689d5b075
  1. 1
      identitypage.cpp

@ -281,6 +281,7 @@ void IdentityPage::slotContextMenu( IdentityListViewItem *item, const QPoint &po
menu->addAction( i18n( "Add..." ), this, SLOT(slotNewIdentity()) );
if ( item ) {
menu->addAction( i18n( "Modify..." ), this, SLOT(slotModifyIdentity()) );
menu->addAction( i18n( "Rename" ), this, SLOT(slotRenameIdentity()) );
if ( mIPage.mIdentityList->topLevelItemCount() > 1 ) {
menu->addAction( i18n( "Remove" ), this, SLOT(slotRemoveIdentity()) );
}

Loading…
Cancel
Save