author | zautrix <zautrix> | 2004-11-08 21:38:38 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-11-08 21:38:38 (UTC) |
commit | 91edd790af2bb6c19954638da1e22158382203a0 (patch) (unidiff) | |
tree | f75e027f1d4e4bcfc0257593d0f2ee2c0405bbd8 | |
parent | 7b899c8a9c38cf96fca6c46b20ae406a716dd213 (diff) | |
download | kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.zip kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.tar.gz kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.tar.bz2 |
menu rearranged
-rw-r--r-- | kaddressbook/kabcore.cpp | 13 |
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() | |||
2006 | mb->insertItem( i18n("&View"), viewMenu ); | 2006 | mb->insertItem( i18n("&View"), viewMenu ); |
2007 | mb->insertItem( i18n("&Settings"), settingsMenu ); | 2007 | mb->insertItem( i18n("&Settings"), settingsMenu ); |
2008 | mb->insertItem( i18n("Synchronize"), syncMenu ); | 2008 | mb->insertItem( i18n("Synchronize"), syncMenu ); |
2009 | mb->insertItem( i18n("&Change selected"), changeMenu ); | 2009 | //mb->insertItem( i18n("&Change"), changeMenu ); |
2010 | mb->insertItem( i18n("&Help"), helpMenu ); | 2010 | mb->insertItem( i18n("&Help"), helpMenu ); |
2011 | mIncSearchWidget = new IncSearchWidget( tb ); | 2011 | mIncSearchWidget = new IncSearchWidget( tb ); |
2012 | // tb->insertWidget(-1, 0, mIncSearchWidget); | 2012 | // tb->insertWidget(-1, 0, mIncSearchWidget); |
@@ -2026,7 +2026,7 @@ void KABCore::addActionsManually() | |||
2026 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); | 2026 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); |
2027 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); | 2027 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); |
2028 | mViewManager->getFilterAction()->plug ( popupBarTB); | 2028 | mViewManager->getFilterAction()->plug ( popupBarTB); |
2029 | popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); | 2029 | //popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); |
2030 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); | 2030 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); |
2031 | if (QApplication::desktop()->width() > 320 ) { | 2031 | if (QApplication::desktop()->width() > 320 ) { |
2032 | // mViewManager->getFilterAction()->plug ( tb); | 2032 | // mViewManager->getFilterAction()->plug ( tb); |
@@ -2054,6 +2054,7 @@ void KABCore::addActionsManually() | |||
2054 | mActionSave->plug( fileMenu ); | 2054 | mActionSave->plug( fileMenu ); |
2055 | fileMenu->insertItem( "&Import", ImportMenu ); | 2055 | fileMenu->insertItem( "&Import", ImportMenu ); |
2056 | fileMenu->insertItem( "&Export", ExportMenu ); | 2056 | fileMenu->insertItem( "&Export", ExportMenu ); |
2057 | fileMenu->insertItem( i18n("&Change"), changeMenu ); | ||
2057 | fileMenu->insertSeparator(); | 2058 | fileMenu->insertSeparator(); |
2058 | mActionMailVCard->plug( fileMenu ); | 2059 | mActionMailVCard->plug( fileMenu ); |
2059 | #ifndef DESKTOP_VERSION | 2060 | #ifndef DESKTOP_VERSION |
@@ -2226,10 +2227,14 @@ void KABCore::removeVoice() | |||
2226 | { | 2227 | { |
2227 | 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 ) | 2228 | 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 ) |
2228 | return; | 2229 | return; |
2229 | KABC::Addressee::List list = mViewManager->selectedAddressees(); | 2230 | KABC::Addressee::List list; |
2231 | XXPortSelectDialog dlg( this, false, this ); | ||
2232 | if ( dlg.exec() ) | ||
2233 | list = dlg.contacts(); | ||
2234 | else | ||
2235 | return; | ||
2230 | KABC::Addressee::List::Iterator it; | 2236 | KABC::Addressee::List::Iterator it; |
2231 | for ( it = list.begin(); it != list.end(); ++it ) { | 2237 | for ( it = list.begin(); it != list.end(); ++it ) { |
2232 | |||
2233 | if ( (*it).removeVoice() ) | 2238 | if ( (*it).removeVoice() ) |
2234 | contactModified((*it) ); | 2239 | contactModified((*it) ); |
2235 | } | 2240 | } |