summaryrefslogtreecommitdiffabout
path: root/kaddressbook/kabcore.cpp
authorzautrix <zautrix>2004-11-08 21:38:38 (UTC)
committer zautrix <zautrix>2004-11-08 21:38:38 (UTC)
commit91edd790af2bb6c19954638da1e22158382203a0 (patch) (side-by-side diff)
treef75e027f1d4e4bcfc0257593d0f2ee2c0405bbd8 /kaddressbook/kabcore.cpp
parent7b899c8a9c38cf96fca6c46b20ae406a716dd213 (diff)
downloadkdepimpi-91edd790af2bb6c19954638da1e22158382203a0.zip
kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.tar.gz
kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.tar.bz2
menu rearranged
Diffstat (limited to 'kaddressbook/kabcore.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/kabcore.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp
index 755da11..d99a9cd 100644
--- a/kaddressbook/kabcore.cpp
+++ b/kaddressbook/kabcore.cpp
@@ -2006,7 +2006,7 @@ void KABCore::addActionsManually()
mb->insertItem( i18n("&View"), viewMenu );
mb->insertItem( i18n("&Settings"), settingsMenu );
mb->insertItem( i18n("Synchronize"), syncMenu );
- mb->insertItem( i18n("&Change selected"), changeMenu );
+ //mb->insertItem( i18n("&Change"), changeMenu );
mb->insertItem( i18n("&Help"), helpMenu );
mIncSearchWidget = new IncSearchWidget( tb );
// tb->insertWidget(-1, 0, mIncSearchWidget);
@@ -2026,7 +2026,7 @@ void KABCore::addActionsManually()
popupBarTB->insertItem( i18n("&Settings"), settingsMenu );
popupBarTB->insertItem( i18n("Synchronize"), syncMenu );
mViewManager->getFilterAction()->plug ( popupBarTB);
- popupBarTB->insertItem( i18n("&Change selected"), changeMenu );
+ //popupBarTB->insertItem( i18n("&Change selected"), changeMenu );
popupBarTB->insertItem( i18n("&Help"), helpMenu );
if (QApplication::desktop()->width() > 320 ) {
// mViewManager->getFilterAction()->plug ( tb);
@@ -2054,6 +2054,7 @@ void KABCore::addActionsManually()
mActionSave->plug( fileMenu );
fileMenu->insertItem( "&Import", ImportMenu );
fileMenu->insertItem( "&Export", ExportMenu );
+ fileMenu->insertItem( i18n("&Change"), changeMenu );
fileMenu->insertSeparator();
mActionMailVCard->plug( fileMenu );
#ifndef DESKTOP_VERSION
@@ -2226,10 +2227,14 @@ void KABCore::removeVoice()
{
if ( KMessageBox::questionYesNo( this, i18n("After importing, phone numbers\nmay have two or more types.\n(E.g. work+voice)\nThese numbers are shown as \"other\".\nClick Yes to remove the voice type\nfrom numbers with more than one type.\n\nRemove voice type?") ) == KMessageBox::No )
return;
- KABC::Addressee::List list = mViewManager->selectedAddressees();
+ KABC::Addressee::List list;
+ XXPortSelectDialog dlg( this, false, this );
+ if ( dlg.exec() )
+ list = dlg.contacts();
+ else
+ return;
KABC::Addressee::List::Iterator it;
for ( it = list.begin(); it != list.end(); ++it ) {
-
if ( (*it).removeVoice() )
contactModified((*it) );
}