summaryrefslogtreecommitdiff
path: root/core/pim/addressbook
Side-by-side diff
Diffstat (limited to 'core/pim/addressbook') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/addressbook.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp
index 7c52ef2..75e539a 100644
--- a/core/pim/addressbook/addressbook.cpp
+++ b/core/pim/addressbook/addressbook.cpp
@@ -355,12 +355,24 @@ void AddressbookWindow::slotItemEdit()
tr("Can not edit data, currently syncing") );
}
}
void AddressbookWindow::slotItemDuplicate()
{
+ if(!syncing)
+ {
+ Opie::OPimContact entry = m_abView->currentEntry();
+ entry.assignUid();
+ m_abView->addEntry( entry );
+ m_abView->setCurrentUid( entry.uid() );
+ }
+ else
+ {
+ QMessageBox::warning( this, tr("Contacts"),
+ tr("Can not edit data, currently syncing") );
+ }
}
void AddressbookWindow::slotItemDelete()
{
if(!syncing) {
Opie::OPimContact tmpEntry = m_abView ->currentEntry();